Files
start-os/sdk/base/lib/osBindings/ImageSource.ts
Aiden McClelland 504f1a8e97 sdk tweaks (#2791)
* sdk tweaks

* switch back to deeppartial
2024-11-25 18:49:11 +00:00

14 lines
360 B
TypeScript

// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { BuildArg } from "./BuildArg"
export type ImageSource =
| "packed"
| {
dockerBuild: {
workdir?: string
dockerfile?: string
buildArgs?: { [key: string]: BuildArg }
}
}
| { dockerTag: string }