This commit is contained in:
+2
@@ -0,0 +1,2 @@
|
||||
import { DefinedError } from 'ajv';
|
||||
export declare const filterSingleErrorPerProperty: (errors: DefinedError[]) => DefinedError[];
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
export declare const getSuggestion: ({ value, suggestions, format, }: {
|
||||
value: string | null;
|
||||
suggestions: string[];
|
||||
format?: ((suggestion: string) => string) | undefined;
|
||||
}) => string;
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
export declare const pointerToDotNotation: (pointer: string) => string;
|
||||
export declare const cleanAjvMessage: (message: string) => string;
|
||||
export declare const getLastSegment: (path: string) => string;
|
||||
export declare const safeJsonPointer: <T>({ object, pnter, fallback }: {
|
||||
object: any;
|
||||
pnter: string;
|
||||
fallback: T;
|
||||
}) => T;
|
||||
Reference in New Issue
Block a user