Files

6 lines
293 B
TypeScript
Raw Permalink Normal View History

2022-12-27 12:05:56 +01:00
/// <reference types="node" />
import type { ServerResponse } from 'http';
import type { BaseNextResponse } from '../base-http';
import type { PayloadOptions } from './index';
export declare function setRevalidateHeaders(res: ServerResponse | BaseNextResponse, options: PayloadOptions): void;