UNPKG

385 BTypeScriptView Raw
1/**
2 * @author: JP Lew (jp@cto.ai)
3 * @date: Tuesday, 23rd April 2019 3:51:09 pm
4 * @lastModifiedBy: JP Lew (jp@cto.ai)
5 * @lastModifiedTime: Wednesday, 1st May 2019 3:06:30 pm
6 * @copyright (c) 2019 CTO.ai
7 */
8import { Team } from '.';
9export interface MeResponse {
10 me: Me;
11 teams: Team[];
12}
13interface Me {
14 id: string;
15 username: string;
16 email: string;
17}
18export {};