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