UNPKG

@cf-wasm/og

Version:

Generate Open Graph Images dynamically from HTML/CSS without a browser.

15 lines 474 B
//#region src/core/emoji.d.ts /** Apis for loading emoji svg */ declare const EMOJI_APIS: { openmoji: (code: string) => string; blobmoji: (code: string) => string; noto: (code: string) => string; twemoji: (code: string) => string; fluent: (code: string) => string; fluentFlat: (code: string) => string; }; /** Represents type of emoji */ type EmojiType = keyof typeof EMOJI_APIS; //#endregion export { EMOJI_APIS, EmojiType }; //# sourceMappingURL=emoji.d.ts.map