mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 14:59:35 +00:00
14 lines
235 B
TypeScript
14 lines
235 B
TypeScript
export type DiscordIntegration = {
|
|
type: "discord"
|
|
name: string
|
|
enabled: boolean
|
|
}
|
|
|
|
export type ModulePermissions = {
|
|
search: boolean
|
|
}
|
|
|
|
export type ModuleState = {
|
|
integration: DiscordIntegration
|
|
permissions: ModulePermissions
|
|
} |