We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 481ee57 commit f7a9e2dCopy full SHA for f7a9e2d
src/interface.ts
@@ -14,7 +14,9 @@ export interface ProgressProps {
14
transition?: string;
15
}
16
17
-export type StrokeColorType = string | string[] | Record<string, string>;
+export type BaseStrokeColorType = string | Record<string, string>;
18
+
19
+export type StrokeColorType = BaseStrokeColorType | BaseStrokeColorType[];
20
21
export type GapPositionType = 'top' | 'right' | 'bottom' | 'left';
22
0 commit comments