Interface IBaseFetchOptions

Options for fetching data with optional force and token.

interface IBaseFetchOptions {
    force?: boolean;
    token?: string;
}

Properties

Properties

force?: boolean

Force a fresh fetch, bypassing cache.

token?: string

Token to use for the request.