@typia/website
    Preparing search index...

    Interface ISuccess<T>

    Success type of IResult.

    interface ISuccess<T> {
        success: true;
        value: T;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    success: true

    Success flag.

    value: T

    Success value.