UNPKG

@extra-isin/logos.web

Version:

Graphical symbols for identification of specific securities labeled by the 12-digit code, ISIN.

21 lines (19 loc) 477 B
/** * Get local path of a security's logo. * @param isin isin code * @returns local path */ declare function path(isin: string): string; /** * Get UNPKG URL of a security's logo. * @param isin isin code * @returns UNPKG URL */ declare function unpkgUrl(isin: string): string; /** * Get jsDelivr URL of a security's logo. * @param isin isin code * @returns jsDelivr URL */ declare function jsDelivrUrl(isin: string): string; export { jsDelivrUrl, path, unpkgUrl };