massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / table / node_modules / ajv / dist / compile / resolve.d.ts
1 import type { AnySchema, AnySchemaObject } from "../types";
2 import type Ajv from "../ajv";
3 import * as URI from "uri-js";
4 export declare type LocalRefs = {
5     [Ref in string]?: AnySchemaObject;
6 };
7 export declare function inlineRef(schema: AnySchema, limit?: boolean | number): boolean;
8 export declare function getFullPath(id?: string, normalize?: boolean): string;
9 export declare function _getFullPath(p: URI.URIComponents): string;
10 export declare function normalizeId(id: string | undefined): string;
11 export declare function resolveUrl(baseId: string, id: string): string;
12 export declare function getSchemaRefs(this: Ajv, schema: AnySchema, baseId: string): LocalRefs;