UNPKG

webpack-extjs-loader

Version:

A ExtJs project module loader for webpack

11 lines (10 loc) 492 B
import type { Plugin, CodeKeywordDefinition, ErrorObject } from "ajv"; declare type Kwd = "formatMaximum" | "formatMinimum" | "formatExclusiveMaximum" | "formatExclusiveMinimum"; declare type Comparison = "<=" | ">=" | "<" | ">"; export declare type LimitFormatError = ErrorObject<Kwd, { limit: string; comparison: Comparison; }>; export declare const formatLimitDefinition: CodeKeywordDefinition; declare const formatLimitPlugin: Plugin<undefined>; export default formatLimitPlugin;