UNPKG

devmoji

Version:

Enhance your conventional commits with gitmoji

14 lines (13 loc) 380 B
import { Config } from "./config"; export declare class Devmoji { config: Config; shortcodeRegex: RegExp; shortcodeSpaceRegex: RegExp; unicodeRegex: RegExp; constructor(config: Config); get(code: string): string; emojify(text: string): string; strip(text: string): string; demojify(text: string): string; devmojify(text: string): string; }