flow-interfaces-google-apps-script
Version:
Flow interface declarations for the Google Apps Script API
12 lines (10 loc) • 333 B
JavaScript
// @flow
// @see https://developers.google.com/apps-script/reference/cache/cache
interface gas$Cache {
get(key: string): ?string;
put(key: string, value: string): void;
putAll(values: Object): void;
putAll(values: Object, expirationInSeconds: number): void;
remove(key: string): void;
removeAll(keys: string[]): void;
}