選択できるのは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. }