Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
15 lines
554 B
Plaintext
15 lines
554 B
Plaintext
export default addLimitKeyword;
|
|
export type Ajv = import("ajv").default;
|
|
export type Code = import("ajv").Code;
|
|
export type Name = import("ajv").Name;
|
|
export type KeywordErrorDefinition = import("ajv").KeywordErrorDefinition;
|
|
/** @typedef {import("ajv").default} Ajv */
|
|
/** @typedef {import("ajv").Code} Code */
|
|
/** @typedef {import("ajv").Name} Name */
|
|
/** @typedef {import("ajv").KeywordErrorDefinition} KeywordErrorDefinition */
|
|
/**
|
|
* @param {Ajv} ajv ajv
|
|
* @returns {Ajv} ajv with limit keyword
|
|
*/
|
|
declare function addLimitKeyword(ajv: Ajv): Ajv;
|