Interface IFetchOptions

interface IFetchOptions {
    cache?: boolean;
    force?: boolean;
    fullInfo?: boolean;
}

Properties

cache?: boolean

Whether to cache the fetched data. Defaults to true.

force?: boolean

Whether to bypass the cache and fetch directly from the source. Defaults to false.

fullInfo?: boolean

Whether to retrieve complete, detailed information. Defaults to false.