Skip to content

Commit afdd066

Browse files
authored
chore: Remove redundant type (#3392)
1 parent 1ec4cef commit afdd066

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap

+4-4
Original file line numberDiff line numberDiff line change
@@ -1808,7 +1808,7 @@ When controlling this directly, make sure to update the value based on filtering
18081808
",
18091809
"name": "xDomain",
18101810
"optional": true,
1811-
"type": "conditional",
1811+
"type": "ReadonlyArray<T>",
18121812
},
18131813
{
18141814
"defaultValue": ""linear"",
@@ -3144,7 +3144,7 @@ When controlling this directly, make sure to update the value based on filtering
31443144
",
31453145
"name": "xDomain",
31463146
"optional": true,
3147-
"type": "conditional",
3147+
"type": "ReadonlyArray<T>",
31483148
},
31493149
{
31503150
"defaultValue": ""categorical"",
@@ -10568,7 +10568,7 @@ When controlling this directly, make sure to update the value based on filtering
1056810568
",
1056910569
"name": "xDomain",
1057010570
"optional": true,
10571-
"type": "conditional",
10571+
"type": "ReadonlyArray<T>",
1057210572
},
1057310573
{
1057410574
"defaultValue": ""linear"",
@@ -11328,7 +11328,7 @@ When controlling this directly, make sure to update the value based on filtering
1132811328
",
1132911329
"name": "xDomain",
1133011330
"optional": true,
11331-
"type": "conditional",
11331+
"type": "ReadonlyArray<T>",
1133211332
},
1133311333
{
1133411334
"defaultValue": ""linear"",

src/internal/components/cartesian-chart/interfaces.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export interface CartesianChartProps<T extends ChartDataTypes, Series> extends B
2222
* It is recommended to set this explicitly. If not, the component will determine a domain that fits all data points.
2323
* When controlling this directly, make sure to update the value based on filtering changes.
2424
*/
25-
xDomain?: T extends unknown ? ReadonlyArray<T> : ReadonlyArray<T>;
25+
xDomain?: ReadonlyArray<T>;
2626

2727
/**
2828
* Determines the domain of the y axis, i.e. the range of values that will be visible in the chart.
@@ -254,6 +254,6 @@ export type XScaleType = 'linear' | 'log' | 'time' | 'categorical';
254254
export type YScaleType = 'linear' | 'log';
255255
export type ScaleRange = [number, number];
256256

257-
export type ChartDomain<T extends ChartDataTypes> = T extends unknown ? ReadonlyArray<T> : ReadonlyArray<T>;
257+
export type ChartDomain<T extends ChartDataTypes> = ReadonlyArray<T>;
258258
export type XDomain<T extends ChartDataTypes> = ChartDomain<T>;
259259
export type YDomain = ChartDomain<number>;

0 commit comments

Comments
 (0)