mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-11 20:04:55 +02:00
16 lines
642 B
TypeScript
16 lines
642 B
TypeScript
export default addUndefinedAsNullKeyword;
|
|
export type Ajv = import("ajv").default;
|
|
export type SchemaValidateFunction = import("ajv").SchemaValidateFunction;
|
|
export type AnySchemaObject = import("ajv").AnySchemaObject;
|
|
export type ValidateFunction = import("ajv").ValidateFunction;
|
|
/** @typedef {import("ajv").default} Ajv */
|
|
/** @typedef {import("ajv").SchemaValidateFunction} SchemaValidateFunction */
|
|
/** @typedef {import("ajv").AnySchemaObject} AnySchemaObject */
|
|
/** @typedef {import("ajv").ValidateFunction} ValidateFunction */
|
|
/**
|
|
*
|
|
* @param {Ajv} ajv
|
|
* @returns {Ajv}
|
|
*/
|
|
declare function addUndefinedAsNullKeyword(ajv: Ajv): Ajv;
|