next
Version:
The React Framework
12 lines (9 loc) • 388 B
TypeScript
import { ReactElement } from 'react';
import { ImageResponseOptions } from './types.js';
import "next/dist/compiled/@vercel/og/satori";
import 'http';
declare class ImageResponse extends Response {
constructor(element: ReactElement, options?: ImageResponseOptions);
}
type EdgeImageResponse = typeof ImageResponse;
export { EdgeImageResponse, ImageResponse, ImageResponseOptions };