Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 419 Bytes

tsbuffer.encodeoutput.md

File metadata and controls

20 lines (15 loc) · 419 Bytes

Home > tsbuffer > EncodeOutput

EncodeOutput type

Signature:

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