您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
182 B

  1. import {Uuid} from '@theoryofnekomata/uuid-buffer';
  2. export type User = {
  3. id: Uuid,
  4. username: string,
  5. }
  6. export type Org = {
  7. id: Uuid,
  8. name: string,
  9. description: string,
  10. }