ts: set binaryOutput type to Record<string, string>

This commit is contained in:
karishmas6
2024-10-15 00:23:07 +05:30
parent 8d01c9a67f
commit 93bf6bcd35

View File

@@ -25,7 +25,7 @@ interface RunAttributes {
log: string;
runId: string;
serializableOutput: Record<string, any[]>;
binaryOutput: Record<string, any>;
binaryOutput: Record<string, string>;
}
interface RunCreationAttributes extends Optional<RunAttributes, 'id'> { }