UNPKG

@litert/typeguard

Version:

An easy and powerful data validation code generator by JavaScript.

51 lines 2.1 kB
/** * Copyright 2023 Angus Fenying <fenying@litert.org> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ export declare const STRING = "string"; export declare const ASCII_STRING = "ascii_string"; export declare const HEX_STRING = "hex_string"; export declare const LATIN_STRING = "latin_string"; export declare const NUMERIC = "numeric"; export declare const SAFE_INT = "safe_int"; export declare const INT = "int"; export declare const INT8 = "int8"; export declare const INT16 = "int16"; export declare const INT32 = "int32"; export declare const INT64 = "int64"; export declare const SAFE_UINT = "safe_uint"; export declare const UINT = "uint"; export declare const UINT8 = "uint8"; export declare const UINT16 = "uint16"; export declare const UINT32 = "uint32"; export declare const UINT64 = "uint64"; export declare const BOOLEAN = "boolean"; export declare const ARRAY = "array"; export declare const ANY = "any"; export declare const STRUCT = "struct"; export declare const NULL = "null"; export declare const UNDEFINED = "undefined"; export declare const VOID = "void"; export declare const FALSE = "false"; export declare const TRUE = "true"; export declare const FALSE_VALUE = "false_value"; export declare const TRUE_VALUE = "true_value"; export declare const OPTIONAL = "optional"; export declare const REQUIRED = "required"; export declare const DECIMAL = "decimal"; export declare const NUMBER = "number"; export declare const FLOAT = "float"; export declare const UDECIMAL = "udecimal"; export declare const UFLOAT = "ufloat"; //# sourceMappingURL=BuiltInTypes.d.ts.map