File tree Expand file tree Collapse file tree
lib/node_modules/@stdlib/types Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -81,6 +81,11 @@ declare module '@stdlib/types/array' {
8181 */
8282 type NumericDataType = RealDataType | ComplexFloatingPointDataType ; // "numeric"
8383
84+ /**
85+ * Data type "kinds".
86+ */
87+ type DataTypeKind = 'all' | 'numeric' | 'real' | 'floating_point' | 'real_floating_point' | 'complex_floating_point' | 'integer' | 'signed_integer' | 'unsigned_integer' ;
88+
8489 /**
8590 * An array-like value.
8691 *
@@ -788,6 +793,11 @@ declare module '@stdlib/types/ndarray' {
788793 */
789794 type NumericDataType = RealDataType | ComplexFloatingPointDataType ; // "numeric"
790795
796+ /**
797+ * Data type "kinds".
798+ */
799+ type DataTypeKind = 'all' | 'numeric' | 'real' | 'floating_point' | 'real_floating_point' | 'complex_floating_point' | 'integer' | 'signed_integer' | 'unsigned_integer' ;
800+
791801 /**
792802 * Output data type policy.
793803 */
You can’t perform that action at this time.
0 commit comments