flow-interfaces-google-apps-script
Version:
Flow interface declarations for the Google Apps Script API
12 lines (9 loc) • 379 B
JavaScript
// @flow
// @see https://developers.google.com/apps-script/reference/forms/page-navigation-type
opaque type gas$Form$Enum$PageNavigationType = any;
interface gas$Form$PageNavigationType {
+CONTINUE: gas$Form$Enum$PageNavigationType;
+GO_TO_PAGE: gas$Form$Enum$PageNavigationType;
+RESTART: gas$Form$Enum$PageNavigationType;
+SUBMIT: gas$Form$Enum$PageNavigationType;
}