Template
1
0

feat: update tests

This commit is contained in:
2025-04-18 21:22:49 +00:00
parent 7df57522d2
commit 74ab1644d6
10 changed files with 372 additions and 294 deletions

View File

@@ -39,7 +39,9 @@ export class Action<TActionState extends ActionState = ActionState> {
|--------------------------------------------------------------------------------
*/
export const action = {
export const action: {
make(name: string): Action;
} = {
make(name: string) {
return new Action({ name });
},