feat(Boolean)

This commit is contained in:
2025-08-05 20:08:01 +03:00
parent 4a5a0e4f3c
commit 5d7534dd44
3 changed files with 37 additions and 4 deletions

2
types/index.d.ts vendored
View File

@ -9,7 +9,7 @@ import { Struct } from "./Struct";
export { memcpy, limits, Type, Int, ConstString, ConstArray, ConstDataView, Struct }
export type SerializableType = NumberConstructor | StringConstructor | ArrayConstructor | DataViewConstructor | Type
export type SerializableType = BooleanConstructor | NumberConstructor | StringConstructor | ArrayConstructor | DataViewConstructor | Type
export type Serializable = unknown
/**