feat(struct): allow structs to be used as fields directly (#741)

This commit is contained in:
Simon Chan 2025-04-04 00:26:42 +08:00 committed by GitHub
parent d3019ce738
commit b79df96301
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
32 changed files with 956 additions and 429 deletions

View file

@ -1,6 +1,6 @@
import type { BufferLengthConverter } from "./buffer.js";
import { buffer } from "./buffer.js";
import type { Field } from "./field.js";
import type { Field } from "./field/index.js";
import { decodeUtf8, encodeUtf8 } from "./utils.js";
export interface String {