From 93bf6bcd3510775cf6bf666b94bb1b201dfae03f Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Tue, 15 Oct 2024 00:23:07 +0530 Subject: [PATCH] ts: set binaryOutput type to Record --- server/src/models/Run.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/models/Run.ts b/server/src/models/Run.ts index 695c10a6..17a53829 100644 --- a/server/src/models/Run.ts +++ b/server/src/models/Run.ts @@ -25,7 +25,7 @@ interface RunAttributes { log: string; runId: string; serializableOutput: Record; - binaryOutput: Record; + binaryOutput: Record; } interface RunCreationAttributes extends Optional { }