diff --git a/src/types/builder.ts b/src/types/builder.ts index e92b6b2..c798edc 100644 --- a/src/types/builder.ts +++ b/src/types/builder.ts @@ -30,3 +30,11 @@ export interface NodeInfo { buildkitVersion?: string; platforms?: string; } + +export interface Node { + name?: string; + endpoint?: string; + 'driver-opts'?: Array; + 'buildkitd-flags'?: string; + platforms?: string; +}