@vsokolov/utils - v0.32.0
    Preparing search index...

    Interface Success<T>

    Success variant of Result containing data and no error.

    interface Success<T> {
        data: T;
        error: null;
    }

    Type Parameters

    • T

      The type of the successful data

    Index

    Properties

    Properties

    data: T
    error: null