Files
start-sdk/lib/test/output.sdk.ts
2023-05-09 15:55:19 -06:00

9 lines
235 B
TypeScript

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