From 93c338e35cafbd59bd86727a9cff08ac719e8c39 Mon Sep 17 00:00:00 2001 From: Christopher Monsanto Date: Sun, 23 Aug 2020 21:03:23 -0400 Subject: [PATCH] deploy/script: logentry obj : any --> unknown --- tools/deploy/script.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/deploy/script.ts b/tools/deploy/script.ts index cfac3516..78a40582 100644 --- a/tools/deploy/script.ts +++ b/tools/deploy/script.ts @@ -15,7 +15,7 @@ type CopyEntry = { export type LogEntry = CopyEntry | { type : 'Debug', - obj : any + obj : unknown }; export class ActionQueue {