feat(Int)

This commit is contained in:
2025-08-05 10:09:53 +03:00
parent 8c2d7118c2
commit f5b485d546
5 changed files with 123 additions and 2 deletions

View File

@ -1,12 +1,13 @@
import { limits } from "./limits"
import { memcpy } from "./mem"
import { Type } from "./Type"
import { Int } from "./Int"
import { ConstString } from './ConstString'
import { ConstArray } from "./ConstArray"
import { ConstDataView } from './ConstDataView'
import { Struct } from './Struct'
export { limits, memcpy, Type, ConstString, ConstArray, ConstDataView, Struct }
export { limits, memcpy, Type, Int, ConstString, ConstArray, ConstDataView, Struct }
export function serialize(dv, src, ...types) {
const [type, ...inner_types] = types