revalidate-headers.d.ts 293 B

12345
  1. /// <reference types="node" />
  2. import type { ServerResponse } from 'http';
  3. import type { BaseNextResponse } from '../base-http';
  4. import type { PayloadOptions } from './index';
  5. export declare function setRevalidateHeaders(res: ServerResponse | BaseNextResponse, options: PayloadOptions): void;