Type alias UseSoftQuoteReturn

UseSoftQuoteReturn: Omit<UseQueryResult<ParsedSoftQuoteResponse, ConnectError>, "data"> & {
    softQuotes?: ParsedSoftQuoteResponse[];
}

Return type of the useSoftQuote hook. quotes - Array of parsed quote responses. isStreaming - Flag to indicate if the quote stream is open. ...rest - Any other properties returned by the useQuery hook.

Type declaration

Generated using TypeDoc