You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
367 B

3 months ago
  1. export default addAbsolutePathKeyword;
  2. export type Ajv = import('ajv').Ajv;
  3. export type ValidateFunction = import('ajv').ValidateFunction;
  4. export type SchemaUtilErrorObject = import('ajv').ErrorObject & {
  5. children?: import('ajv').ErrorObject[] | undefined;
  6. };
  7. /**
  8. *
  9. * @param {Ajv} ajv
  10. * @returns {Ajv}
  11. */
  12. declare function addAbsolutePathKeyword(ajv: Ajv): Ajv;