mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-27 14:30:49 +08:00
21 lines
743 B
TypeScript
21 lines
743 B
TypeScript
// Type definitions for emojione 2.2
|
|
// Project: https://github.com/Ranks/emojione
|
|
// Definitions by: Danilo Bargen <https://github.com/dbrgn/>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export as namespace emojione;
|
|
|
|
export var sprites: boolean;
|
|
export var imagePathPNG: string;
|
|
export var imagePathSVG: string;
|
|
export var imagePathSVGSprites: string;
|
|
export var imageType: 'png' | 'svg';
|
|
export var unicodeAlt: boolean;
|
|
export var ascii: boolean;
|
|
export var unicodeRegexp: string;
|
|
export var cacheBustParam: string;
|
|
export function toShort(str: string): string;
|
|
export function toImage(str: string): string;
|
|
export function shortnameToImage(str: string): string;
|
|
export function unicodeToImage(str: string): string;
|