File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ export type ExtendedSchema = {
10
10
link ?: string | undefined ;
11
11
undefinedAsNull ?: boolean | undefined ;
12
12
} ;
13
+ export type Extend = ExtendedSchema ;
13
14
export type Schema = ( JSONSchema4 | JSONSchema6 | JSONSchema7 ) & ExtendedSchema ;
14
15
export type SchemaUtilErrorObject = ErrorObject & {
15
16
children ?: Array < ErrorObject > ;
Original file line number Diff line number Diff line change @@ -59,6 +59,9 @@ const getAjv = memoize(() => {
59
59
* @property {boolean= } undefinedAsNull
60
60
*/
61
61
62
+ // TODO remove me in the next major release
63
+ /** @typedef {ExtendedSchema } Extend */
64
+
62
65
/** @typedef {(JSONSchema4 | JSONSchema6 | JSONSchema7) & ExtendedSchema } Schema */
63
66
64
67
/** @typedef {ErrorObject & { children?: Array<ErrorObject> } } SchemaUtilErrorObject */
You can’t perform that action at this time.
0 commit comments