From 34d5af25a4a2978f2580d26839381d5791ca9ed2 Mon Sep 17 00:00:00 2001 From: harttle Date: Sat, 6 Jul 2019 14:49:39 +0800 Subject: [PATCH] chore: trying to fix TS4053 --- src/context/scope.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context/scope.ts b/src/context/scope.ts index 18c6f4ce6..748e316a9 100644 --- a/src/context/scope.ts +++ b/src/context/scope.ts @@ -1,6 +1,6 @@ import { Drop } from '../drop/drop' -interface PlainObject { +export interface PlainObject { [key: string]: any; toLiquid?: () => any; }