diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-07-06 14:38:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-06 14:38:12 +0200 |
commit | 1aac47720b8dad6826d59263f8e825c221f2a328 (patch) | |
tree | 198e239c8389ef168fbb8dde5aecb11105a170e4 /core/internal.d.ts | |
parent | f139a0cc11f0b3a7e3cb1975310c079e4741d199 (diff) |
refactor: use primordials in extensions/web (#11273)
Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
Diffstat (limited to 'core/internal.d.ts')
-rw-r--r-- | core/internal.d.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/internal.d.ts b/core/internal.d.ts index e582eb359..6697f4715 100644 --- a/core/internal.d.ts +++ b/core/internal.d.ts @@ -834,6 +834,10 @@ declare namespace __bootstrap { export const TypeErrorLength: typeof TypeError.length; export const TypeErrorName: typeof TypeError.name; export const TypeErrorPrototype: typeof TypeError.prototype; + export const TypedArrayFrom: ( + constructor: Uint8ArrayConstructor, + arrayLike: ArrayLike<number>, + ) => Uint8Array; export const TypedArrayPrototypeCopyWithin: UncurryThis< typeof Uint8Array.prototype.copyWithin >; |