@makehq/sdk
    Preparing search index...

    Type Alias FetchFunction

    FetchFunction: <T = unknown>(url: string, options?: FetchOptions) => Promise<T>

    Function signature for making API requests.

    Type declaration

      • <T = unknown>(url: string, options?: FetchOptions): Promise<T>
      • Type Parameters

        • T = unknown

          The expected response type

        Parameters

        • url: string

          The endpoint URL

        • Optionaloptions: FetchOptions

          Request options including headers, query parameters, and body

        Returns Promise<T>

        Promise resolving to the response data