Files
start-sdk/lib/test/output.sdk.ts
2023-05-09 11:44:32 -06:00

8 lines
193 B
TypeScript

import { StartSDK } from "../StartSDK"
export type Manifest = any
export const sdk = StartSDK.of()
.withManifest<Manifest>()
.withStore<{ storeRoot: { storeLeaf: "value" } }>()
.build()