flow-interfaces-google-apps-script
Version:
Flow interface declarations for the Google Apps Script API
14 lines (11 loc) • 410 B
JavaScript
// @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;
}