blob: 12e8de58cd761d4178a694802f029167c72b68aa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
from typing import Dict
from slack_api.slack_common import SlackErrorResponse
from typing_extensions import Literal, TypedDict, final
@final
class SlackEmojiListSuccessResponse(TypedDict):
ok: Literal[True]
emoji: Dict[str, str]
cache_ts: str
SlackEmojiListResponse = SlackEmojiListSuccessResponse | SlackErrorResponse
|