UNPKG

@nativescript/core

Version:

A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.

3 lines (2 loc) 202 B
export declare function makeValidator<T>(...values: T[]): (value: any) => value is T; export declare function makeParser<T>(isValid: (value: any) => boolean, allowNumbers?: boolean): (value: any) => T;