Sanity Library Reference Docs
    Preparing search index...
    StrictDefinedFetchType: <const QueryString extends string>(
        options: {
            params?: QueryParams | Promise<QueryParams>;
            perspective: LivePerspective;
            query: QueryString;
            requestTag?: string;
            stega: boolean;
            tags?: string[];
        },
    ) => Promise<
        {
            data: ClientReturn<QueryString, unknown>;
            sourceMap: ContentSourceMap | null;
            tags: string[];
        },
    >

    Like DefinedFetchType but with perspective and stega required. Returned by defineLive({strict: true}).

    Type declaration