BootstrapKayKitAssetsSource
BootstrapKayKitAssetsSource = {
commit?:string;kind:"github"; } | {kind:"zip";path:string; }
Defined in: src/cli/commands/bootstrap/core.ts:71
Source descriptor for BootstrapKayKitAssetsOptions. Discriminates between fetching from the upstream GitHub repo and extracting a locally cached zip archive.
Union Members
Section titled “Union Members”Type Literal
Section titled “Type Literal”{ commit?: string; kind: "github"; }
commit?
Section titled “commit?”
readonlyoptionalcommit?:string
Optional git ref (commit / tag / branch). Defaults to KAYKIT_FREE_GITHUB_DEFAULT_REF.
readonlykind:"github"
Source kind discriminator selecting the upstream-GitHub tarball path.
Type Literal
Section titled “Type Literal”{ kind: "zip"; path: string; }
readonlykind:"zip"
Source kind discriminator selecting the local-zip extraction path.
readonlypath:string
Filesystem path of the locally cached pack zip.