From 02d627646a3516745ab3e76277fda0c85e513e40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20Kol=C3=A1=C5=99?= Date: Sun, 14 Jun 2020 18:20:19 +0300 Subject: [PATCH] Fix TS compilation error TS error: Statements are not allowed in ambient contexts. --- types/VueRoughNotation.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/VueRoughNotation.d.ts b/types/VueRoughNotation.d.ts index b7e5a81..d7335fb 100644 --- a/types/VueRoughNotation.d.ts +++ b/types/VueRoughNotation.d.ts @@ -9,6 +9,6 @@ export interface VueRoughNotationOptions { strokeWidth?: number; padding?: number; iterations?: number; -}; +} -export interface VueRoughNotationPluginObject extends PluginObject {}; +export interface VueRoughNotationPluginObject extends PluginObject {}