Skip to content

Commit 0973512

Browse files
jmannaufloryst
authored andcommitted
fix(DataArray): fix typescript getRanges arg type
1 parent 0c948b0 commit 0973512

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Common/Core/DataArray/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export interface vtkDataArray extends vtkObject {
9494
* @param {boolean} [computeRanges] (default: true)
9595
* @returns {vtkRange[]}
9696
*/
97-
getRanges(computeRanges = true): vtkRange[];
97+
getRanges(computeRanges: boolean): vtkRange[];
9898

9999
/**
100100
* Set the given tuple at the given index.

0 commit comments

Comments
 (0)