UNPKG

flow-interfaces-google-apps-script

Version:
15 lines (12 loc) 511 B
// @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;