ZenFS
    Preparing search index...

    Interface Response<TMethod>Internal

    An RPC message

    interface Response<TMethod extends Method = Method> {
        _zenfs: true;
        error?: WithOptional<ExceptionJSON, "code" | "errno">;
        id: string;
        method: TMethod;
        stack: string;
        value: ReturnType<Methods[TMethod]>;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    _zenfs: true
    error?: WithOptional<ExceptionJSON, "code" | "errno">
    id: string
    method: TMethod
    stack: string
    value: ReturnType<Methods[TMethod]>