본문으로 건너뛰기

JsonScannerOptionsAsync

Signature

interface JsonScannerOptionsAsync<Schema extends UnknownSchema = UnknownSchema, ContextType = void> extends Omit<JsonScannerOptions<Schema, ContextType>, 'resolveReference'> {
resolveReference?: Fn<[
reference: string,
entry: SchemaEntry<Schema>,
context?: ContextType
], Schema | Promise<Schema | undefined> | undefined>;
}