remix-og-image
Version:
Build-time in-browser Open Graph image generation plugin for Remix.
9 lines (7 loc) • 312 B
text/typescript
declare const OPEN_GRAPH_USER_AGENT_HEADER = "remix-og-image";
interface OpenGraphImageData {
name: string;
params?: Record<string, string>;
}
declare function isOpenGraphImageRequest(request: Request): boolean;
export { OPEN_GRAPH_USER_AGENT_HEADER, type OpenGraphImageData, isOpenGraphImageRequest };