Files
start-os/sdk/lib/osBindings/SetDependenciesParams.ts
Jade 2c255b6dfe chore: Do some type cleanups (#2650)
chore: fix the WithProcedureId
2024-06-24 16:00:31 -06:00

9 lines
319 B
TypeScript

// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { DependencyRequirement } from "./DependencyRequirement"
import type { Guid } from "./Guid"
export type SetDependenciesParams = {
procedureId: Guid
dependencies: Array<DependencyRequirement>
}