@kintone/dts-gen
Version:
Types for kintone js api and Types generating tools
18 lines (17 loc) • 479 B
TypeScript
export interface ParsedArgs {
baseUrl: string;
username: string | null;
password: string | null;
oAuthToken: string | null;
apiToken: string | null;
proxy: string | null;
basicAuthPassword: string | null;
basicAuthUsername: string | null;
appId: string | null;
preview: boolean;
guestSpaceId: string | null;
typeName: string;
namespace: string;
output: string;
}
export declare const parse: (argv: string[]) => ParsedArgs;