flow-interfaces-google-apps-script
Version:
Flow interface declarations for the Google Apps Script API
16 lines (13 loc) • 530 B
JavaScript
// @flow
// @see https://developers.google.com/apps-script/reference/maps/maps
interface gas$Maps$Maps {
+DirectionFinder: gas$Maps$DirectionFinderEnums;
+StaticMap: gas$Maps$StaticMapEnums;
decodePolyline(polyline: string): number[];
encodePolyline(points: number[]): String;
newDirectionFinder(): gas$Maps$DirectionFinder;
newElevationSampler(): gas$Maps$ElevationSampler;
newGeocoder(): gas$Maps$Geocoder;
newStaticMap(): gas$Maps$StaticMap;
setAuthentication(clientId: string, signingKey: string): void;
}