flow-interfaces-google-apps-script
Version:
Flow interface declarations for the Google Apps Script API
13 lines (10 loc) • 426 B
JavaScript
// @flow
// @see https://developers.google.com/apps-script/reference/document/positioned-layout
opaque type gas$Document$PositionedLayout = any;
interface gas$Document$Enum$PositionedLayout {
+ABOVE_TEXT: gas$Document$PositionedLayout;
+BREAK_BOTH: gas$Document$PositionedLayout;
+BREAK_LEFT: gas$Document$PositionedLayout;
+BREAK_RIGHT: gas$Document$PositionedLayout;
+WRAP_TEXT: gas$Document$PositionedLayout;
}