Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.d.ts « emoji-regex « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1955b4704ecfc9693da9689e01ad99432c8cae9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
declare module 'emoji-regex' {
    function emojiRegex(): RegExp;

    export default emojiRegex;
}

declare module 'emoji-regex/text' {
    function emojiRegex(): RegExp;

    export default emojiRegex;
}

declare module 'emoji-regex/es2015' {
    function emojiRegex(): RegExp;

    export default emojiRegex;
}

declare module 'emoji-regex/es2015/text' {
    function emojiRegex(): RegExp;

    export default emojiRegex;
}