flow-interfaces-google-apps-script
Version:
Flow interface declarations for the Google Apps Script API
10 lines (8 loc) • 327 B
JavaScript
// @flow
// @see https://developers.google.com/apps-script/reference/charts/text-style-builder
interface gas$TextStyleBuilder {
build(): gas$TextStyle;
setColor(cssValue: string): gas$TextStyleBuilder;
setFontName(fontName: string): gas$TextStyleBuilder;
setFontSize(fontSize: number): gas$TextStyleBuilder;
}