Skip to content

Commit 81ab675

Browse files
committed
Type fixes
1 parent 3651333 commit 81ab675

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

lib/experimental.d.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,13 @@ export type CompiledSchema = {
1919

2020
type AST = {
2121
metaData: Record<string, MetaData>;
22-
plugins: Set<EvaluationPlugin>;
22+
plugins: EvaluationPlugin[];
2323
} & Record<string, Node<unknown>[] | boolean>;
2424

2525
type Node<A> = [keywordId: string, schemaUri: string, keywordValue: A];
2626

2727
type MetaData = {
28-
id: string;
2928
dynamicAnchors: Anchors;
30-
anchors: Anchors;
3129
};
3230

3331
type Anchors = Record<string, string>;

0 commit comments

Comments
 (0)