From 734bfb5788d8b8fc3ec4927bcefb77d74fd91e6b Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Tue, 13 Apr 2021 16:12:42 +0200 Subject: [PATCH] Stop basic installation from throwing typescript errors (#4185) --- docs/walkthroughs/01-installing-slate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/walkthroughs/01-installing-slate.md b/docs/walkthroughs/01-installing-slate.md index 01a7abed9..9fb96f3c2 100644 --- a/docs/walkthroughs/01-installing-slate.md +++ b/docs/walkthroughs/01-installing-slate.md @@ -59,7 +59,7 @@ type CustomText = { text: string } declare module 'slate' { interface CustomTypes { - Editor: BaseEditor & ReactEditor & HistoryEditor + Editor: BaseEditor & ReactEditor Element: CustomElement Text: CustomText }