thaldrin/src/utils/types.ts

24 lines
344 B
TypeScript
Raw Normal View History

2021-04-04 15:17:46 +00:00
export type CommandContext = {
}
export type Server = {
readonly id: string
2021-04-04 15:17:46 +00:00
server_id: string
prefix: string[]
locale: string
shortlinks: boolean
embeds: boolean
source: boolean
interactiontext: boolean
}
export type Usage = {
readonly id: string
name: string,
type: string
amount: number
2021-04-04 15:17:46 +00:00
}