@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
TypeScript
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';