UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

3 lines (2 loc) 240 B
export type ResolverFunc<T> = (value: T | PromiseLike<T>) => void; export declare function publishCall<T>(fnName: string, options: string[], resolver: (option: string, value: T, res: ResolverFunc<T>) => void, ...params: any[]): Promise<T>;