import type { GradientFillPatch } from "./GradientFillPatch.js"; import type { PatternType } from "./PatternType.js"; export type FillPatch = { color?: string; pattern?: PatternType; foreground?: string; background?: string; gradient?: GradientFillPatch; };