We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3651333 commit 81ab675Copy full SHA for 81ab675
1 file changed
lib/experimental.d.ts
@@ -19,15 +19,13 @@ export type CompiledSchema = {
19
20
type AST = {
21
metaData: Record<string, MetaData>;
22
- plugins: Set<EvaluationPlugin>;
+ plugins: EvaluationPlugin[];
23
} & Record<string, Node<unknown>[] | boolean>;
24
25
type Node<A> = [keywordId: string, schemaUri: string, keywordValue: A];
26
27
type MetaData = {
28
- id: string;
29
dynamicAnchors: Anchors;
30
- anchors: Anchors;
31
};
32
33
type Anchors = Record<string, string>;
0 commit comments