aboutsummaryrefslogtreecommitdiffstats
path: root/typings/slack_api/slack_common.pyi
blob: 33a4f76579f12fcdecb92fed6f36e79449bda5a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
from typing_extensions import Literal, TypedDict, final

@final
class SlackErrorResponse(TypedDict):
    ok: Literal[False]
    error: str

@final
class SlackResponseMetadata(TypedDict):
    next_cursor: str