mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-31 12:43:38 +00:00
8 lines
193 B
TypeScript
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()
|