@tableau/taco-toolkit
Version:
Tableau Connector Toolkit
12 lines (11 loc) • 392 B
TypeScript
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 {};