From 9dfbef22096ce3c0aafbc38fa5a94d365536e109 Mon Sep 17 00:00:00 2001 From: Christopher Manouvrier Date: Wed, 16 Jan 2019 13:20:03 +1100 Subject: [PATCH] fix(prosemirror-model): schema.marks typo --- types/prosemirror-model/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/prosemirror-model/index.d.ts b/types/prosemirror-model/index.d.ts index aa02f9b770..a86037d0f8 100644 --- a/types/prosemirror-model/index.d.ts +++ b/types/prosemirror-model/index.d.ts @@ -1323,7 +1323,7 @@ export class Schema { /** * A map from mark names to mark type objects. */ - marks: { [name in M]: MarkType> } & { [key: string]: NodeType> }; + marks: { [name in M]: MarkType> } & { [key: string]: MarkType> }; /** * The type of the [default top node](#model.SchemaSpec.topNode) * for this schema.