flow-interfaces-google-apps-script
Version:
Flow interface declarations for the Google Apps Script API
11 lines (8 loc) • 319 B
JavaScript
// @flow
// @see https://developers.google.com/apps-script/reference/script/installation-source
opaque type gas$InstallationSource = any;
interface gas$Enum$InstallationSource {
+APPS_MARKETPLACE_DOMAIN_ADD_ON: gas$InstallationSource;
+NONE: gas$InstallationSource;
+WEB_STORE_ADD_ON: gas$InstallationSource;
}