UNPKG

485 BTypeScriptView Raw
1import type { CodeKeywordDefinition } from "../../types";
2import { _JTDTypeError } from "./error";
3export type JTDTypeError = _JTDTypeError<"type", JTDType, JTDType>;
4export type IntType = "int8" | "uint8" | "int16" | "uint16" | "int32" | "uint32";
5export declare const intRange: {
6 [T in IntType]: [number, number, number];
7};
8export type JTDType = "boolean" | "string" | "timestamp" | "float32" | "float64" | IntType;
9declare const def: CodeKeywordDefinition;
10export default def;