typia
Version:
Superfast runtime validators with only one line
19 lines (18 loc) • 919 B
TypeScript
export declare const camel: (method: string) => {
any: (input: any) => any;
throws: (props: Pick<import("../..").TypeGuardError.IProps, "expected" | "value">) => never;
is_between: (value: number, minimum: number, maximum: number) => boolean;
is_bigint_string: (str: string) => boolean;
};
export declare const pascal: (method: string) => {
any: (input: any) => any;
throws: (props: Pick<import("../..").TypeGuardError.IProps, "expected" | "value">) => never;
is_between: (value: number, minimum: number, maximum: number) => boolean;
is_bigint_string: (str: string) => boolean;
};
export declare const snake: (method: string) => {
any: (input: any) => any;
throws: (props: Pick<import("../..").TypeGuardError.IProps, "expected" | "value">) => never;
is_between: (value: number, minimum: number, maximum: number) => boolean;
is_bigint_string: (str: string) => boolean;
};