6 lines
133 B
TypeScript
6 lines
133 B
TypeScript
import types = require('./types');
|
|
|
|
declare function safeCb(val?: any, ctx?: any, argCount?: number): types.AnyFn;
|
|
|
|
export = safeCb;
|