const.d.ts 208 B

123456
  1. import type { CodeKeywordDefinition, ErrorObject } from "../../types";
  2. export type ConstError = ErrorObject<"const", {
  3. allowedValue: any;
  4. }>;
  5. declare const def: CodeKeywordDefinition;
  6. export default def;