flow-interfaces-google-apps-script
Version:
Flow interface declarations for the Google Apps Script API
11 lines (8 loc) • 314 B
JavaScript
// @flow
// @see https://developers.google.com/apps-script/reference/properties/properties-service
interface gas$PropertiesService {
getDocumentProperties(): gas$Properties;
getScriptProperties(): gas$Properties;
getUserProperties(): gas$Properties;
}
declare var PropertiesService: gas$PropertiesService;