Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/forms / build / dist / validators / __match.d.ts
Size: Mime:
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;