chore: Remove the satisfies from the non released versions.

This commit is contained in:
BluJ
2023-05-12 14:50:28 -06:00
parent 5033df197c
commit 3df957898a
4 changed files with 34 additions and 30 deletions

View File

@@ -13,7 +13,10 @@ export function setupActions<Store, Vault>(
}
return actions
})
return {
const answer: {
actions: ExpectedExports.actions
actionsMetadata: ExpectedExports.actionsMetadata
} = {
get actions() {
return myActions()
},
@@ -23,8 +26,6 @@ export function setupActions<Store, Vault>(
createdActions.map((x) => x.ActionMetadata({ effects, utils })),
)
},
} satisfies {
actions: ExpectedExports.actions
actionsMetadata: ExpectedExports.actionsMetadata
}
return answer
}