types.ts 245 B

12345678910111213
  1. export type MemberJson = {
  2. member_id: string
  3. root_account: string
  4. controller_account: string
  5. handle: string
  6. about?: string
  7. avatar_uri?: string
  8. registered_at_time: number
  9. }
  10. export type StorageSystemJson = {
  11. blacklist: string[]
  12. }