refactor(es modules): continue migration

This commit is contained in:
Azgaar 2022-06-25 17:59:03 +03:00
parent 97f2b213c4
commit 030caec6e8
23 changed files with 61 additions and 42 deletions

View file

@ -23,7 +23,7 @@ function getTypedArray(maxValue: number) {
interface ICreateTypedArray {
maxValue: number;
length: number;
from: ArrayLike<number>;
from?: ArrayLike<number>;
}
export function createTypedArray({maxValue, length, from}: ICreateTypedArray) {