Skip to content

Commit 66c36f4

Browse files
committed
fix: rename OutputPolicies to OutputPolicy to make data type defs
1 parent 191e983 commit 66c36f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -665,9 +665,9 @@ declare module '@stdlib/types/ndarray' {
665665
type RealOrComplexDataType = RealDataType | ComplexDataType;
666666

667667
/**
668-
* Output data type policies.
668+
* Output data type policy.
669669
*/
670-
type OutputPolicies = 'default' | 'same' | 'promoted' | 'bool' | 'numeric' | 'real' | 'floating_point' | 'real_floating_point' | 'complex_floating_point' | 'integer' | 'signed_integer' | 'unsigned_integer'; // tslint:disable-line:max-line-length
670+
type OutputPolicy = 'default' | 'same' | 'promoted' | 'bool' | 'numeric' | 'real' | 'floating_point' | 'real_floating_point' | 'complex_floating_point' | 'integer' | 'signed_integer' | 'unsigned_integer'; // tslint:disable-line:max-line-length
671671

672672
/**
673673
* Array order.

0 commit comments

Comments
 (0)