UNPKG

657 BTypeScriptView Raw
1import { AjvFormat } from '../types';
2/**
3 * int32: [-2147483648, 21474836 47]
4 */
5export declare const int32Format: AjvFormat<number>;
6/**
7 * int64: [-9223372036854775808, 9223372036854775807]
8 */
9export declare const int64Format: AjvFormat<number>;
10/**
11 * float: [-2^128, 2^128]
12 */
13export declare const floatFormat: AjvFormat<number>;
14/**
15 * double: [-2^1024, 2^1024]
16 */
17export declare const doubleFormat: AjvFormat<number>;
18/**
19 * Base64 encoded string
20 */
21export declare const byteFormat: AjvFormat;
22/**
23 * Binary string
24 */
25export declare const binaryFormat: AjvFormat;
26export declare const openapiFormats: (AjvFormat<string> | AjvFormat<number>)[];