Successful state of API Result.

interface APISuccess<T> {
    result: T;
    status: Success;
}

Type Parameters

  • T

Properties

Properties

result: T

Result of the API.

status: Success

Success status.