UNPKG

@tableau/taco-toolkit

Version:
12 lines (11 loc) 392 B
export declare const choices: { agree: string; decline: string; view: string; }; type DecisionType = typeof choices.agree | typeof choices.decline; export declare function askForEula(): Promise<void>; export declare function displayEulaView(): Promise<DecisionType>; export declare function generateEula(): void; export declare function hasLicenseAgreement(): boolean; export {};