nuxt-og-image
Version:
Enlightened OG Image generation for Nuxt.
10 lines (9 loc) • 388 B
TypeScript
import type { Storage } from 'unstorage';
import type { OgImageOptions } from '../../../types.js';
export declare const htmlPayloadCache: Storage<{
expiresAt: number;
value: OgImageOptions;
}>;
export declare const prerenderOptionsCache: Storage<OgImageOptions> | undefined;
export declare const fontCache: Storage<BufferSource>;
export declare const emojiCache: Storage<string>;