Repository URL to install this package:
|
Version:
3.7.2 ▾
|
export declare type TestFn = (...args: any[]) => boolean;
export interface TestObj {
test: (eh: any) => boolean;
}
export declare type TestablePatternType = RegExp | TestFn | TestObj;
declare function test(pattern: TestablePatternType, x?: any): any;
export { test };
export default test;