UNPKG

helene

Version:
8 lines (7 loc) 215 B
import { AnyFunction } from './types'; /** * Get the params and the result and combine in a single output. * * @param func */ export declare function intercept(func: AnyFunction): (params: any) => Promise<any>;