flow-interfaces-google-apps-script
Version:
Flow interface declarations for the Google Apps Script API
17 lines (15 loc) • 450 B
JavaScript
// @flow
// @see https://developers.google.com/apps-script/reference/xml-service/content
interface gas$Content {
asCdata(): gas$Cdata;
asComment(): gas$Comment;
asDocType(): gas$DocType;
asElement(): gas$Element;
asEntityRef(): gas$EntityRef;
asProcessingInstruction(): gas$ProcessingInstruction;
asText(): gas$Text;
detach(): gas$Content;
getParentElement(): gas$Element;
getType(): gas$XML$ContentType;
getValue(): string;
}