Files
start-sdk/lib/test/output.sdk.ts
2023-05-09 14:10:02 -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()