/** * Parse the Docker Engine API OpenAPI spec for Dockerfile-related types. * * We extract only the image-builder relevant definitions: * ContainerConfig, BuildInfo, and related types. */ export interface DockerfileParseResult { typeName: string; shortName: string; description?: string; instructions: DockerfileInstruction[]; } export interface DockerfileInstruction { name: string; description?: string; multi?: boolean; } /** * Parse the Docker Engine API YAML buffer for Dockerfile instruction types. * Returns a single DockerfileParseResult describing the Dockerfile entity. */ export declare function parseEngineApi(_data: Buffer): DockerfileParseResult; //# sourceMappingURL=parse-engine.d.ts.map