flow-interfaces-google-apps-script
Version:
Flow interface declarations for the Google Apps Script API
15 lines (12 loc) • 511 B
JavaScript
// @flow
// @see https://developers.google.com/apps-script/reference/base/browser
interface gas$Browser {
Buttons: gas$Enum$ButtonSet;
inputBox(prompt: string): string;
inputBox(prompt: string, buttons: gas$ButtonSet): string;
inputBox(title: string, prompt: string, buttons: gas$ButtonSet): string;
msgBox(prompt: string): string;
msgBox(prompt: string, buttons: gas$ButtonSet): string;
msgBox(title: string, prompt: string, buttons: gas$ButtonSet): string;
}
declare var Browser: gas$Browser;