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
9 lines
428 B
Plaintext
9 lines
428 B
Plaintext
import type $Refs from "./refs.js";
|
|
import type { ParserOptions } from "./options.js";
|
|
import type { JSONSchema } from "./types/index.js";
|
|
/**
|
|
* Reads and parses the specified file path or URL.
|
|
*/
|
|
declare function parse<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(path: string, $refs: $Refs<S, O>, options: O): Promise<string | Buffer<ArrayBufferLike> | S | undefined>;
|
|
export default parse;
|