mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-26 10:21:55 +00:00
9 lines
235 B
TypeScript
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)
|