chore: Update to remove some wrapper data

This commit is contained in:
BluJ
2023-05-09 11:44:32 -06:00
parent 07493551b1
commit 715ddff896
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
import { StartSDK } from "../StartSDK"
export type WrapperData = any
export type Manifest = any
export const sdk = StartSDK.of()
.withManifest<WrapperData>()
.withManifest<Manifest>()
.withStore<{ storeRoot: { storeLeaf: "value" } }>()
.build()