diff --git a/entities/account.ts b/entities/account.d.ts similarity index 100% rename from entities/account.ts rename to entities/account.d.ts diff --git a/entities/compose.d.ts b/entities/compose.d.ts new file mode 100644 index 0000000..be4af74 --- /dev/null +++ b/entities/compose.d.ts @@ -0,0 +1,209 @@ +type Label = { + [label: string]: string +} + +type WeightDevice = Array<{ + path: string + weight: number +}> + +type DeviceBLK = Array<{ + path: string + rate: number | string +}> + +type BuildServices = { + context: string + dockefile: string + dockerfile_inline: string + args: Label + ssh: Array + cache_from: Array + cache_to: Array + additional_contexts: Array