Skip to content
Open
Prev Previous commit
Next Next commit
rollback
  • Loading branch information
orionmiz committed Jan 19, 2026
commit 3bdc21f0b59152f592c57f96b7eb1bd6de1ba670
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { MonolithicActivityComponentType } from "./MonolithicActivityComponentType";
import type { StructuredActivityComponentType } from "./StructuredActivityComponentType";

export type ActivityComponentType<T extends {} = {}> =
export type ActivityComponentType<T extends { [K in keyof T]: any } = {}> =
| MonolithicActivityComponentType<T>
| StructuredActivityComponentType<T>;
Loading