UNPKG

@kintone/dts-gen

Version:

Types for kintone js api and Types generating tools

20 lines (19 loc) 502 B
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; demo: boolean; typeName: string; namespace: string; output: string; } export declare const parse: (argv: string[]) => ParsedArgs; export {};