|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
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.