This commit is contained in:
bracesproul
2024-11-26 11:28:19 -08:00
parent 2ee279a977
commit 58b99c899e
+1 -1
View File
@@ -167,7 +167,7 @@ export interface Thread<ValuesType = DefaultValues> {
values: ValuesType;
/** Interrupts which were thrown in this thread */
interrupts: {} | { [id: string]: Array<Interrupt> };
interrupts: Record<string, Array<Interrupt>>;
}
export interface Cron {