Home > tsbuffer > EncodeOutput
Signature:
export type EncodeOutput = {
isSucc: true;
buf: Uint8Array;
errMsg?: undefined;
} | {
isSucc: false;
errMsg: string;
buf?: undefined;
};
Home > tsbuffer > EncodeOutput
Signature:
export type EncodeOutput = {
isSucc: true;
buf: Uint8Array;
errMsg?: undefined;
} | {
isSucc: false;
errMsg: string;
buf?: undefined;
};