summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/internal.d.ts4
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
>;