Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

13 rader
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. }