interface LoadResultProps<T> {
    apiError?: Error;
    error?: boolean;
    notFound: boolean;
    searchResult: undefined | T;
}

Type Parameters

  • T

Properties

apiError?: Error
error?: boolean
notFound: boolean
searchResult: undefined | T