mixit/src/services/discord/Types.ts

16 lines
225 B
TypeScript

export interface Account {
username: string
}
export interface Guild {
id: string
name: string
icon: string
}
export interface Options {
timeout: number
reconnect: boolean
buffer: number
showMedia: boolean
}