UNPKG

flow-interfaces-google-apps-script

Version:
14 lines (11 loc) 410 B
// @flow // @see https://developers.google.com/apps-script/guides/html/reference/history type gas$History$Event = { +state: Object, +location: gas$Location } interface gas$History { push(stateObject: Object, params: {[string]: string}, hash: string): void; replace(stateObject: Object, params: {[string]: string}, hash: string): void; setChangeHandler(func: (e: gas$History$Event) => any): void; }