UNPKG

flow-interfaces-google-apps-script

Version:
13 lines (10 loc) 281 B
// @flow // @see https://developers.google.com/apps-script/guides/html/reference/url type gas$Location = { hash: string, parameter: {[string]: string}, parameters: {[string]: string[]} } interface gas$Url { getLocation(function: (location: gas$Location) => any): void; }