Last change
on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
492 bytes
|
Line | |
---|
1 | import type { Plugin, CodeKeywordDefinition, ErrorObject } from "ajv";
|
---|
2 | declare type Kwd = "formatMaximum" | "formatMinimum" | "formatExclusiveMaximum" | "formatExclusiveMinimum";
|
---|
3 | declare type Comparison = "<=" | ">=" | "<" | ">";
|
---|
4 | export declare type LimitFormatError = ErrorObject<Kwd, {
|
---|
5 | limit: string;
|
---|
6 | comparison: Comparison;
|
---|
7 | }>;
|
---|
8 | export declare const formatLimitDefinition: CodeKeywordDefinition;
|
---|
9 | declare const formatLimitPlugin: Plugin<undefined>;
|
---|
10 | export default formatLimitPlugin;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.