我将如何扩展DocumeQuery以支持属性{cache:any}
import { model, Schema, Document } from "mongoose";
export interface ILocation extends Document{
name: string;
description: string;
}
const response = await model.findById(id).cache(60, 'Location-Cache-Key') // -> Cache on this line.
Property 'cache' does not exist on type 'DocumentQuery<ILocation, ILocation, {}>'