/** * Manual overrides for upstream Docker spec quirks. * * These patches adjust entity names, property types, or descriptions * where the upstream spec is ambiguous, incorrect, or overly broad. */ export interface EntityPatch { /** Override entity description */ description?: string; /** Override specific property types */ propertyOverrides?: Record; /** Properties to exclude from type generation */ excludeProperties?: string[]; } /** * Patches keyed by entity typeName. */ export declare const ENTITY_PATCHES: Record; //# sourceMappingURL=patches.d.ts.map