Urara-Blog/node_modules/.pnpm-store/v3/files/1f/7263778300a1ebd38f439f22bfe141ae5ff1d2f6f7455ba403626db23f41217f60d663dbeb73c5234b3ebc93d024d66d45e23a66ddbd0806771343ed4c9061
2022-08-14 01:14:53 +08:00

10 lines
509 B
Text

import type { CodeKeywordDefinition } from "../../types";
import { _JTDTypeError } from "./error";
export declare type JTDTypeError = _JTDTypeError<"type", JTDType, JTDType>;
export declare type IntType = "int8" | "uint8" | "int16" | "uint16" | "int32" | "uint32";
export declare const intRange: {
[T in IntType]: [number, number, number];
};
export declare type JTDType = "boolean" | "string" | "timestamp" | "float32" | "float64" | IntType;
declare const def: CodeKeywordDefinition;
export default def;