diff --git a/packages/typed-binary/src/structure/typedArray.ts b/packages/typed-binary/src/structure/typedArray.ts index 811e957..93a33cd 100644 --- a/packages/typed-binary/src/structure/typedArray.ts +++ b/packages/typed-binary/src/structure/typedArray.ts @@ -1,12 +1,12 @@ import { + type IMeasurer, type ISerialInput, type ISerialOutput, - type IMeasurer, Measurer, } from '../io'; import type { MutableBufferView } from '../io/types'; import type { Parsed } from '../utilityTypes'; -import { Schema, type MaxValue } from './types'; +import { type MaxValue, Schema } from './types'; type TypedArrayConstructor = { readonly BYTES_PER_ELEMENT: number; diff --git a/packages/typed-binary/src/test/typedArray.test.ts b/packages/typed-binary/src/test/typedArray.test.ts index 5ce5b63..a53b14b 100644 --- a/packages/typed-binary/src/test/typedArray.test.ts +++ b/packages/typed-binary/src/test/typedArray.test.ts @@ -1,14 +1,14 @@ -import { describe, it, expect } from 'vitest'; +import { describe, expect, it } from 'vitest'; import { f32Array, f64Array, + i8Array, i16Array, i32Array, - i8Array, - u16Array, - u32Array, u8Array, u8ClampedArray, + u16Array, + u32Array, } from '../describe'; import { encodeAndDecode } from './helpers/mock';