Skip to content

Commit a9c4e75

Browse files
committed
Auto-generated commit
1 parent c71a97d commit a9c4e75

2 files changed

Lines changed: 18 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
### Features
1212

13+
- [`175f77b`](https://github.com/stdlib-js/stdlib/commit/175f77bf60886a7a04c68be4ae5952efaee59e43) - add dtype type definitions
1314
- [`6d18f6b`](https://github.com/stdlib-js/stdlib/commit/6d18f6bf0dbd7f1e638c9c6f73157f77c709c11d) - add `Int64` and `Uint64` number types
1415
- [`009e8bf`](https://github.com/stdlib-js/stdlib/commit/009e8bfdd4aa743569580ece4a034cad5287926d) - add `Descriptor` interface in `@stdlib/ndarray` module
1516
- [`b9502d5`](https://github.com/stdlib-js/stdlib/commit/b9502d5bdeb15982528aa7777f399a291c9dc6b8) - add complex32 type definitions and add `Float16Array` stub
@@ -51,6 +52,7 @@
5152

5253
<details>
5354

55+
- [`175f77b`](https://github.com/stdlib-js/stdlib/commit/175f77bf60886a7a04c68be4ae5952efaee59e43) - **feat:** add dtype type definitions _(by Athan Reines)_
5456
- [`6d18f6b`](https://github.com/stdlib-js/stdlib/commit/6d18f6bf0dbd7f1e638c9c6f73157f77c709c11d) - **feat:** add `Int64` and `Uint64` number types _(by Athan Reines)_
5557
- [`009e8bf`](https://github.com/stdlib-js/stdlib/commit/009e8bfdd4aa743569580ece4a034cad5287926d) - **feat:** add `Descriptor` interface in `@stdlib/ndarray` module _(by Athan Reines)_
5658
- [`5a06940`](https://github.com/stdlib-js/stdlib/commit/5a06940ac26e639280b53b34b6707f6ac714d28a) - **docs:** fix typos and examples [(#11761)](https://github.com/stdlib-js/stdlib/pull/11761) _(by Philipp Burckhardt, Athan Reines)_

index.d.ts

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5402,10 +5402,25 @@ declare module '@stdlib/types/complex' {
54025402
* };
54035403
*/
54045404
declare module '@stdlib/types/number' {
5405+
/**
5406+
* Signed integer data type.
5407+
*/
5408+
type SignedIntegerDataType = 'int64';
5409+
5410+
/**
5411+
* Unsigned integer data type.
5412+
*/
5413+
type UnsignedIntegerDataType = 'uint64';
5414+
5415+
/**
5416+
* Integer data type.
5417+
*/
5418+
type IntegerDataType = SignedIntegerDataType | UnsignedIntegerDataType;
5419+
54055420
/**
54065421
* Number data type.
54075422
*/
5408-
type NumberDataType = 'int64' | 'uint64';
5423+
type NumberDataType = IntegerDataType;
54095424

54105425
/**
54115426
* A unsigned 64-bit integer.

0 commit comments

Comments
 (0)