UNPKG

344 BTypeScriptView Raw
1/**
2 * @author: JP Lew (jp@cto.ai)
3 * @date: Monday, 15th April 2019 2:29:03 pm
4 * @lastModifiedBy: JP Lew (jp@cto.ai)
5 * @lastModifiedTime: Wednesday, 12th June 2019 5:12:24 pm
6 * @copyright (c) 2019 CTO.ai
7 */
8export interface User {
9 username: string;
10 email: string;
11 id: string;
12 registryHost?: string;
13 nodeEnv?: string;
14}