fastify-disablecache
Version:
Fastify plugin to disable client-side caching
12 lines (9 loc) • 340 B
TypeScript
import type { FastifyPluginAsync } from "fastify";
declare namespace fastifyDisablecache {
export const fastifyDisablecache: FastifyPluginAsync;
export { fastifyDisablecache as default };
}
declare function fastifyDisablecache(
...params: Parameters<FastifyPluginAsync>
): ReturnType<FastifyPluginAsync>;
export = fastifyDisablecache;