You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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