UNPKG

@svgmoji/core

Version:

Utilities forked from emojibase for working with svgmoji

10 lines (9 loc) 292 B
export interface FetchFromCDNOptions extends RequestInit { /** * The version of the emojibase library to fetch. * * @default 'latest' */ version?: string; } export declare function fetchFromCDN<T>(path: string, options?: FetchFromCDNOptions): Promise<T>;