From df94e0a64f8b41c4e044904958d028a26fe1fa68 Mon Sep 17 00:00:00 2001 From: David Mehren Date: Sun, 12 Apr 2020 17:40:19 +0200 Subject: [PATCH] Fix type in csp.ts Signed-off-by: David Mehren --- lib/csp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/csp.ts b/lib/csp.ts index b778e7c32..3fd68c085 100644 --- a/lib/csp.ts +++ b/lib/csp.ts @@ -2,7 +2,7 @@ import { config } from './config' var uuid = require('uuid') -var CspStrategy = {} +var CspStrategy: any = {} var defaultDirectives = { defaultSrc: ['\'self\''],