Sanity Library Reference Docs
    Preparing search index...

    Type Alias DefinedSanityFetchType

    DefinedSanityFetchType: <const QueryString extends string>(
        options: {
            params?: QueryParams | Promise<QueryParams>;
            perspective?: Exclude<ClientPerspective, "raw">;
            query: QueryString;
            requestTag?: string;
            stega?: boolean;
            tag?: never;
            tags?: string[];
        },
    ) => Promise<
        {
            data: ClientReturn<QueryString>;
            sourceMap: ContentSourceMap | null;
            tags: string[];
        },
    >

    Type declaration