Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 428 Bytes

File metadata and controls

20 lines (15 loc) · 428 Bytes

Home > tsbuffer > DecodeOutput

DecodeOutput type

Signature:

export declare type DecodeOutput<T> = {
    isSucc: true;
    value: T;
    errMsg?: undefined;
} | {
    isSucc: false;
    errMsg: string;
    value?: undefined;
};