summaryrefslogtreecommitdiffstats
path: root/node_modules/schema-utils/declarations
diff options
context:
space:
mode:
authorGravatar Piotr Russ <mail@pruss.it> 2020-11-18 23:26:45 +0100
committerGravatar Piotr Russ <mail@pruss.it> 2020-11-18 23:26:45 +0100
commit81ddf9b700bc48a1f8e472209f080f9c1d9a9b09 (patch)
tree8b959d50c5a614cbf9fcb346ed556140374d4b6d /node_modules/schema-utils/declarations
parent1870f3fdf43707a15fda0f609a021f516f45eb63 (diff)
downloadwebsite_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.gz
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.bz2
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.zip
rm node_modules
Diffstat (limited to 'node_modules/schema-utils/declarations')
-rw-r--r--node_modules/schema-utils/declarations/ValidationError.d.ts88
-rw-r--r--node_modules/schema-utils/declarations/index.d.ts2
-rw-r--r--node_modules/schema-utils/declarations/keywords/absolutePath.d.ts12
-rw-r--r--node_modules/schema-utils/declarations/util/Range.d.ts82
-rw-r--r--node_modules/schema-utils/declarations/util/hints.d.ts6
-rw-r--r--node_modules/schema-utils/declarations/validate.d.ts39
6 files changed, 0 insertions, 229 deletions
diff --git a/node_modules/schema-utils/declarations/ValidationError.d.ts b/node_modules/schema-utils/declarations/ValidationError.d.ts
deleted file mode 100644
index 1b53f70..0000000
--- a/node_modules/schema-utils/declarations/ValidationError.d.ts
+++ /dev/null
@@ -1,88 +0,0 @@
-export default ValidationError;
-export type JSONSchema6 = import('json-schema').JSONSchema6;
-export type JSONSchema7 = import('json-schema').JSONSchema7;
-export type Schema =
- | (import('json-schema').JSONSchema4 & import('./validate').Extend)
- | (import('json-schema').JSONSchema6 & import('./validate').Extend)
- | (import('json-schema').JSONSchema7 & import('./validate').Extend);
-export type ValidationErrorConfiguration = {
- name?: string | undefined;
- baseDataPath?: string | undefined;
- postFormatter?: import('./validate').PostFormatter | undefined;
-};
-export type PostFormatter = (
- formattedError: string,
- error: import('ajv').ErrorObject & {
- children?: import('ajv').ErrorObject[] | undefined;
- }
-) => string;
-export type SchemaUtilErrorObject = import('ajv').ErrorObject & {
- children?: import('ajv').ErrorObject[] | undefined;
-};
-export type SPECIFICITY = number;
-declare class ValidationError extends Error {
- /**
- * @param {Array<SchemaUtilErrorObject>} errors
- * @param {Schema} schema
- * @param {ValidationErrorConfiguration} configuration
- */
- constructor(
- errors: Array<SchemaUtilErrorObject>,
- schema: Schema,
- configuration?: ValidationErrorConfiguration
- );
- /** @type {Array<SchemaUtilErrorObject>} */
- errors: Array<SchemaUtilErrorObject>;
- /** @type {Schema} */
- schema: Schema;
- /** @type {string} */
- headerName: string;
- /** @type {string} */
- baseDataPath: string;
- /** @type {PostFormatter | null} */
- postFormatter: PostFormatter | null;
- /**
- * @param {string} path
- * @returns {Schema}
- */
- getSchemaPart(path: string): Schema;
- /**
- * @param {Schema} schema
- * @param {boolean} logic
- * @param {Array<Object>} prevSchemas
- * @returns {string}
- */
- formatSchema(
- schema: Schema,
- logic?: boolean,
- prevSchemas?: Array<Object>
- ): string;
- /**
- * @param {Schema=} schemaPart
- * @param {(boolean | Array<string>)=} additionalPath
- * @param {boolean=} needDot
- * @param {boolean=} logic
- * @returns {string}
- */
- getSchemaPartText(
- schemaPart?: Schema | undefined,
- additionalPath?: (boolean | Array<string>) | undefined,
- needDot?: boolean | undefined,
- logic?: boolean | undefined
- ): string;
- /**
- * @param {Schema=} schemaPart
- * @returns {string}
- */
- getSchemaPartDescription(schemaPart?: Schema | undefined): string;
- /**
- * @param {SchemaUtilErrorObject} error
- * @returns {string}
- */
- formatValidationError(error: SchemaUtilErrorObject): string;
- /**
- * @param {Array<SchemaUtilErrorObject>} errors
- * @returns {string}
- */
- formatValidationErrors(errors: Array<SchemaUtilErrorObject>): string;
-}
diff --git a/node_modules/schema-utils/declarations/index.d.ts b/node_modules/schema-utils/declarations/index.d.ts
deleted file mode 100644
index f9569b9..0000000
--- a/node_modules/schema-utils/declarations/index.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-export const validate: typeof import('./validate').validate;
-export const ValidationError: typeof import('./ValidationError').default;
diff --git a/node_modules/schema-utils/declarations/keywords/absolutePath.d.ts b/node_modules/schema-utils/declarations/keywords/absolutePath.d.ts
deleted file mode 100644
index 6843dd6..0000000
--- a/node_modules/schema-utils/declarations/keywords/absolutePath.d.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-export default addAbsolutePathKeyword;
-export type Ajv = import('ajv').Ajv;
-export type ValidateFunction = import('ajv').ValidateFunction;
-export type SchemaUtilErrorObject = import('ajv').ErrorObject & {
- children?: import('ajv').ErrorObject[] | undefined;
-};
-/**
- *
- * @param {Ajv} ajv
- * @returns {Ajv}
- */
-declare function addAbsolutePathKeyword(ajv: Ajv): Ajv;
diff --git a/node_modules/schema-utils/declarations/util/Range.d.ts b/node_modules/schema-utils/declarations/util/Range.d.ts
deleted file mode 100644
index d28de38..0000000
--- a/node_modules/schema-utils/declarations/util/Range.d.ts
+++ /dev/null
@@ -1,82 +0,0 @@
-export = Range;
-/**
- * @typedef {[number, boolean]} RangeValue
- */
-/**
- * @callback RangeValueCallback
- * @param {RangeValue} rangeValue
- * @returns {boolean}
- */
-declare class Range {
- /**
- * @param {"left" | "right"} side
- * @param {boolean} exclusive
- * @returns {">" | ">=" | "<" | "<="}
- */
- static getOperator(
- side: 'left' | 'right',
- exclusive: boolean
- ): '>' | '>=' | '<' | '<=';
- /**
- * @param {number} value
- * @param {boolean} logic is not logic applied
- * @param {boolean} exclusive is range exclusive
- * @returns {string}
- */
- static formatRight(value: number, logic: boolean, exclusive: boolean): string;
- /**
- * @param {number} value
- * @param {boolean} logic is not logic applied
- * @param {boolean} exclusive is range exclusive
- * @returns {string}
- */
- static formatLeft(value: number, logic: boolean, exclusive: boolean): string;
- /**
- * @param {number} start left side value
- * @param {number} end right side value
- * @param {boolean} startExclusive is range exclusive from left side
- * @param {boolean} endExclusive is range exclusive from right side
- * @param {boolean} logic is not logic applied
- * @returns {string}
- */
- static formatRange(
- start: number,
- end: number,
- startExclusive: boolean,
- endExclusive: boolean,
- logic: boolean
- ): string;
- /**
- * @param {Array<RangeValue>} values
- * @param {boolean} logic is not logic applied
- * @return {RangeValue} computed value and it's exclusive flag
- */
- static getRangeValue(
- values: Array<[number, boolean]>,
- logic: boolean
- ): [number, boolean];
- /** @type {Array<RangeValue>} */
- _left: Array<[number, boolean]>;
- /** @type {Array<RangeValue>} */
- _right: Array<[number, boolean]>;
- /**
- * @param {number} value
- * @param {boolean=} exclusive
- */
- left(value: number, exclusive?: boolean | undefined): void;
- /**
- * @param {number} value
- * @param {boolean=} exclusive
- */
- right(value: number, exclusive?: boolean | undefined): void;
- /**
- * @param {boolean} logic is not logic applied
- * @return {string} "smart" range string representation
- */
- format(logic?: boolean): string;
-}
-declare namespace Range {
- export { RangeValue, RangeValueCallback };
-}
-type RangeValue = [number, boolean];
-type RangeValueCallback = (rangeValue: [number, boolean]) => boolean;
diff --git a/node_modules/schema-utils/declarations/util/hints.d.ts b/node_modules/schema-utils/declarations/util/hints.d.ts
deleted file mode 100644
index 39412aa..0000000
--- a/node_modules/schema-utils/declarations/util/hints.d.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-export function stringHints(schema: Schema, logic: boolean): string[];
-export function numberHints(schema: Schema, logic: boolean): string[];
-export type Schema =
- | (import('json-schema').JSONSchema4 & import('../validate').Extend)
- | (import('json-schema').JSONSchema6 & import('../validate').Extend)
- | (import('json-schema').JSONSchema7 & import('../validate').Extend);
diff --git a/node_modules/schema-utils/declarations/validate.d.ts b/node_modules/schema-utils/declarations/validate.d.ts
deleted file mode 100644
index 035c52c..0000000
--- a/node_modules/schema-utils/declarations/validate.d.ts
+++ /dev/null
@@ -1,39 +0,0 @@
-export type JSONSchema4 = import('json-schema').JSONSchema4;
-export type JSONSchema6 = import('json-schema').JSONSchema6;
-export type JSONSchema7 = import('json-schema').JSONSchema7;
-export type ErrorObject = import('ajv').ErrorObject;
-export type Extend = {
- formatMinimum?: number | undefined;
- formatMaximum?: number | undefined;
- formatExclusiveMinimum?: boolean | undefined;
- formatExclusiveMaximum?: boolean | undefined;
-};
-export type Schema =
- | (import('json-schema').JSONSchema4 & Extend)
- | (import('json-schema').JSONSchema6 & Extend)
- | (import('json-schema').JSONSchema7 & Extend);
-export type SchemaUtilErrorObject = import('ajv').ErrorObject & {
- children?: import('ajv').ErrorObject[] | undefined;
-};
-export type PostFormatter = (
- formattedError: string,
- error: SchemaUtilErrorObject
-) => string;
-export type ValidationErrorConfiguration = {
- name?: string | undefined;
- baseDataPath?: string | undefined;
- postFormatter?: PostFormatter | undefined;
-};
-/**
- * @param {Schema} schema
- * @param {Array<object> | object} options
- * @param {ValidationErrorConfiguration=} configuration
- * @returns {void}
- */
-export function validate(
- schema: Schema,
- options: Array<object> | object,
- configuration?: ValidationErrorConfiguration | undefined
-): void;
-import ValidationError from './ValidationError';
-export { ValidationError };