feat: creating the rest of the sdk

This commit is contained in:
BluJ
2023-05-09 11:42:26 -06:00
parent 72df4cb502
commit 07493551b1
30 changed files with 568 additions and 504 deletions

View File

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