Skip to content

Commit 1924c38

Browse files
committed
add missing types
1 parent 3d6fddd commit 1924c38

File tree

3 files changed

+38
-0
lines changed

3 files changed

+38
-0
lines changed

typeshed/2.7/emoji/__init__.pyi

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Stubs for emoji (Python 2)
2+
#
3+
# NOTE: This dynamically typed stub was automatically generated by stubgen.
4+
5+
from emoji.core import emojize
6+
from emoji.core import demojize
7+
from emoji.core import get_emoji_regexp
8+
from emoji.unicode_codes import EMOJI_ALIAS_UNICODE
9+
from emoji.unicode_codes import EMOJI_UNICODE
10+
from emoji.unicode_codes import UNICODE_EMOJI
11+
from emoji.unicode_codes import UNICODE_EMOJI_ALIAS
12+
13+
__email__: str
14+
__source__: str
15+
__license__: str
16+
17+

typeshed/2.7/emoji/core.pyi

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Stubs for emoji.core (Python 3)
2+
#
3+
# NOTE: This dynamically typed stub was automatically generated by stubgen.
4+
5+
from typing import Any, Text
6+
7+
def emojize(string: Text, use_aliases: bool = ..., delimiters: Any = ...): ...
8+
def demojize(string: Text, delimiters: Any = ...): ...
9+
def get_emoji_regexp(): ...
10+
def emoji_lis(string: Any): ...
11+

typeshed/2.7/emoji/unicode_codes.pyi

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Stubs for emoji.unicode_codes (Python 3)
2+
#
3+
# NOTE: This dynamically typed stub was automatically generated by stubgen.
4+
5+
from typing import Any
6+
7+
EMOJI_UNICODE: Any
8+
EMOJI_ALIAS_UNICODE: Any
9+
UNICODE_EMOJI: Any
10+
UNICODE_EMOJI_ALIAS: Any

0 commit comments

Comments
 (0)