Left Curve Software Stack
    Preparing search index...

    Type Alias Success<T>

    type Success<T> = {
        data: T;
        error?: never;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    data: T
    error?: never