Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Properties indicating the current operational state of the data fetcher.
import { AssetPairs } from '@krono/core'
loading
loaded
if (assetPairs.loading) { console.log('Fetching pairs...'); } if (assetPairs.status === 'error') { console.error(assetPairs.error); }
type AssetPairsStatus = 'idle' | 'loading' | 'loaded' | 'error';
boolean
error
Was this page helpful?