flow-interfaces-google-apps-script
Version:
Flow interface declarations for the Google Apps Script API
15 lines (12 loc) • 431 B
JavaScript
// @flow
// @see https://developers.google.com/apps-script/reference/xml-service/content-type
opaque type gas$XML$ContentType = any;
interface gas$XML$gas$XML$ContentType$ContentType {
+CDATA: gas$XML$ContentType;
+COMMENT: gas$XML$ContentType;
+DOCTYPE: gas$XML$ContentType;
+ELEMENT: gas$XML$ContentType;
+ENTITYREF: gas$XML$ContentType;
+PROCESSINGINSTRUCTION: gas$XML$ContentType;
+TEXT: gas$XML$ContentType;
}