harmony/src/types/webhook.ts
DjDeveloperr d829c91c3e i tried
2021-04-04 14:59:56 +05:30

13 lines
248 B
TypeScript

import type { UserPayload } from './user.ts'
export interface WebhookPayload {
id: string
type: 1 | 2
guild_id?: string
channel_id: string
user?: UserPayload
name?: string
avatar?: string
token?: string
application_id?: string
}