doc(struct): update README

This commit is contained in:
Simon Chan 2022-02-24 18:25:07 +08:00
parent 943aa96cab
commit 36d44243cc
25 changed files with 283 additions and 176 deletions

View file

@ -526,6 +526,9 @@ export class Struct<
return this as any;
}
/**
* Deserialize a struct value from `stream`.
*/
public deserialize(
stream: StructDeserializeStream,
): StructDeserializedResult<TFields, TExtra, TPostDeserialized>;