Skip to content

Commit c34d2f3

Browse files
committed
fix: improved palette stroke width type
1 parent d6860e8 commit c34d2f3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

engine/src/Core/Interfaces/IPalette.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { RangeValue } from "../../Types/RangeValue.js";
12
import type { SingleOrMultiple } from "../../Types/SingleOrMultiple.js";
23

34
export interface IPaletteColorsFill {
@@ -7,7 +8,7 @@ export interface IPaletteColorsFill {
78

89
export interface IPaletteColorsStroke {
910
value: SingleOrMultiple<string>;
10-
width: number;
11+
width: RangeValue;
1112
}
1213

1314
export interface IPaletteColors {

0 commit comments

Comments
 (0)