dropdown.ts 159 B

12345678
  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. };