From 51d9c40ba14d739fe4cb26a5ff55c440dc9b368e Mon Sep 17 00:00:00 2001 From: Emile Fugulin Date: Mon, 15 Jun 2020 16:34:24 -0400 Subject: [PATCH] fix(interface): ShieldCache should not be a const enum --- src/rules/interface.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rules/interface.ts b/src/rules/interface.ts index d709dffb..15fea600 100644 --- a/src/rules/interface.ts +++ b/src/rules/interface.ts @@ -13,7 +13,7 @@ export type ShieldContext = { }; // Cache -export const enum ShieldCache { +export enum ShieldCache { STRICT = 'strict', CONTEXTUAL = 'contextual', NO_CACHE = 'no_cache',