Refactor code structure for improved readability and maintainability

This commit is contained in:
2025-12-27 05:09:15 +00:00
parent 2d80d53b70
commit 8b95824cb6
7 changed files with 414 additions and 465 deletions
+1 -1
View File
@@ -1,2 +1,2 @@
export type Bytes = ArrayBuffer | DataView | Uint8Array;
export type Bytes = ArrayBuffer | DataView | Uint8Array<ArrayBuffer>;
export type BytesLike = Bytes | string;