This commit is contained in:
Timo K
2025-11-06 15:26:17 +01:00
parent 6e1a582265
commit a55ce19048
9 changed files with 122 additions and 161 deletions

View File

@@ -78,11 +78,11 @@ export interface OurRunHelpers extends RunHelpers {
* diagram.
*/
schedule: (marbles: string, actions: Record<string, () => void>) => void;
behavior<T = string>(
behavior: <T>(
marbles: string,
values?: { [marble: string]: T },
error?: unknown,
): Behavior<T>;
) => Behavior<T>;
scope: ObservableScope;
}