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

Change fill/stroke
This commit is contained in:
Andrey Kernichniy 2026-03-14 17:33:21 +07:00
parent 5d1acba69c
commit 5f2ce822fc
3 changed files with 5 additions and 5 deletions

View file

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