Files
2022-12-27 12:05:56 +01:00

7 lines
261 B
TypeScript

import type { RenderOpts } from './render';
declare function postProcessHTML(pathname: string, content: string, renderOpts: RenderOpts, { inAmpMode, hybridAmp }: {
inAmpMode: boolean;
hybridAmp: boolean;
}): Promise<string>;
export { postProcessHTML };