Release package version 0.0.2
All checks were successful
CI / build (push) Successful in 24s

Update models, added parser
This commit is contained in:
Andrey Kernichniy 2026-03-14 15:12:21 +07:00
parent 0f8546bc69
commit 7742cc7a83
22 changed files with 449 additions and 41 deletions

View file

@ -0,0 +1,7 @@
import { IColor } from "@gxc-solutions/colors";
export interface IStroke {
width: number;
color: IColor;
dash: number[];
}