Types#
Types.
All types for ongaku.
RequestT
module-attribute
#
RequestT = typing.TypeVar(
"RequestT",
str,
int,
bool,
float,
dict[str, typing.Any],
list[typing.Any],
tuple[typing.Any, ...],
)
Request Type.
The types you can request for.
RequestorT
module-attribute
#
RequestorT: typing.TypeAlias = (
hikari.SnowflakeishOr[hikari.User]
| hikari.SnowflakeishOr[hikari.Member]
)
Requestor Type.
The types to set for a requestor of a track.s
PayloadMappingT
module-attribute
#
Payload Mapping Type.
Supports string, bytes, or a mapping.