flow-interfaces-google-apps-script
Version:
Flow interface declarations for the Google Apps Script API
12 lines (8 loc) • 308 B
JavaScript
// @flow
// @see https://developers.google.com/apps-script/reference/content/content-service
interface gas$ContentService {
+MimeType: gas$Content$Enum$MimeType;
createTextOutput(): gas$TextOutput;
createTextOutput(content: string): gas$TextOutput;
}
declare var ContentService: gas$ContentService;