Skip to content

Commit 9ee3a89

Browse files
committed
Fix some types
1 parent 66563fc commit 9ee3a89

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/experimental.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export type CompiledSchema = {
1818

1919
type AST = {
2020
metaData: Record<string, MetaData>;
21-
} & Record<string, Node<Node<unknown>[] | boolean>>;
21+
} & Record<string, Node<unknown>[] | boolean>;
2222

2323
type Node<A> = [keywordId: string, schemaUri: string, keywordValue: A];
2424

@@ -81,6 +81,7 @@ export type ValidationContext = {
8181
dynamicAnchors: Anchors;
8282
errors: OutputUnit[];
8383
annotations: OutputUnit[];
84+
outputFormat: OutputFormat;
8485
};
8586

8687
export const Validation: Keyword<string>;

0 commit comments

Comments
 (0)