dropdown.ts 194 B

123456789
  1. export type DropdownData = {
  2. sid: string;
  3. name: string|null;
  4. thumb: string|null;
  5. isCreator: boolean;
  6. channelID: number|null;
  7. spendableBalance: number;
  8. withdrawableBalance: number|null;
  9. };