import { ReactNode } from "react"; import { QueryCache } from "@pastweb/tools"; //#region src/api/ApiQueryProvider/types.d.ts /** * Props accepted by {@link ApiQueryProvider}. */ interface ApiQueryProviderProps { /** Query cache shared by API agents and React API hooks. */ queryCache: QueryCache; /** Subtree that receives the query cache through React context. */ children: ReactNode; } //#endregion export { ApiQueryProviderProps }; //# sourceMappingURL=types.d.ts.map