source: trip-planner-front/node_modules/ajv-formats/dist/limit.d.ts@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 492 bytes
Line 
1import type { Plugin, CodeKeywordDefinition, ErrorObject } from "ajv";
2declare type Kwd = "formatMaximum" | "formatMinimum" | "formatExclusiveMaximum" | "formatExclusiveMinimum";
3declare type Comparison = "<=" | ">=" | "<" | ">";
4export declare type LimitFormatError = ErrorObject<Kwd, {
5 limit: string;
6 comparison: Comparison;
7}>;
8export declare const formatLimitDefinition: CodeKeywordDefinition;
9declare const formatLimitPlugin: Plugin<undefined>;
10export default formatLimitPlugin;
Note: See TracBrowser for help on using the repository browser.