UNPKG

@romstar/gas-client-typescript

Version:

A client-side utility class that can call server-side Google Apps Script functions

11 lines (10 loc) 439 B
import { ServerConfig } from './types/config'; import { ServerFunctions, FunctionMap } from './types/functions'; declare class GASClient<FM extends FunctionMap = {}> { private _config?; private _functionHost; constructor(_config?: ServerConfig | undefined); get serverFunctions(): ServerFunctions<FM>; } export { GASClient, ServerFunctions }; export { DevServerRequestEvent, GASDevServerIFrame } from './types/dev-server';