UNPKG

gas-client

Version:

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

7 lines (6 loc) 265 B
import { FunctionMap, ServerFunctions } from '../types/functions'; declare abstract class FunctionProvider<FM extends FunctionMap> { protected _serverFunctions: ServerFunctions<FM>; get serverFunctions(): ServerFunctions<FM>; } export { FunctionProvider };