aboutsummaryrefslogtreecommitdiff
path: root/src/types.ts
blob: dc429a43d95c5f2f1b064f8fd9313040700b42a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
interface Base {
  _id: string;
  createdAt: string;
  updatedAt: string;
}

export interface User extends Base {
  username: string;
}

export interface Event extends Base {}