post-process.d.ts 261 B

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