mixit/src/services/discord/Types.ts

16 lines
225 B
TypeScript
Raw Normal View History

2019-05-01 15:07:08 +00:00
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
}