UNPKG

seyfert

Version:

The most advanced framework for discord bots

11 lines (10 loc) 358 B
import type { Identify } from '..'; import type { CDNUrlOptions } from '../../api'; import type { UsingClient } from '../../commands'; export type ImageOptions = CDNUrlOptions; export type MethodContext<T = object> = Identify<{ client: UsingClient; } & T>; export type MessageWebhookPayload<Body, Extra = object> = Identify<{ body: Body; } & Extra>;