UNPKG

409 BTypeScriptView Raw
1/**
2 * @author: JP Lew (jp@cto.ai)
3 * @date: Tuesday, 16th April 2019 4:38:01 pm
4 * @lastModifiedBy: JP Lew (jp@cto.ai)
5 * @lastModifiedTime: Thursday, 5th September 2019 11:08:41 am
6 * @copyright (c) 2019 CTO.ai
7 */
8export interface UserCredentials {
9 user: string | undefined;
10 password: string | undefined;
11 interactive?: boolean | undefined;
12 help?: void;
13 username?: string | undefined;
14}