gxc-model-base/lib/src/interfaces/stroke.ts
Andrey Kernichniy 5f2ce822fc
All checks were successful
CI / build (push) Successful in 31s
Release package version 0.0.4
Change fill/stroke
2026-03-14 17:33:21 +07:00

7 lines
122 B
TypeScript

import { IRgbColor } from "./color";
export interface IStroke {
width: number;
color: IRgbColor;
dash: number[];
}