Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

13 řádky
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. }