Skip to content

Commit 191e983

Browse files
committed
feat: add OutputPolicies type definition
1 parent 2e884c5 commit 191e983

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -664,6 +664,11 @@ declare module '@stdlib/types/ndarray' {
664664
*/
665665
type RealOrComplexDataType = RealDataType | ComplexDataType;
666666

667+
/**
668+
* Output data type policies.
669+
*/
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
671+
667672
/**
668673
* Array order.
669674
*

0 commit comments

Comments
 (0)