mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 14:59:35 +00:00
17 lines
409 B
TypeScript
17 lines
409 B
TypeScript
export type SlackAction = "write" | "read" | "react" | "replyInThread"
|
|
|
|
export type SlackModulePermissionAiConfigurable = {
|
|
identifier: string | string[]
|
|
actions?: SlackAction[]
|
|
}
|
|
|
|
export type ModulePermissions = SlackModulePermissionAiConfigurable
|
|
export type ModuleState = never
|
|
|
|
export type SlackIntegration = {
|
|
type: "slack"
|
|
name: string
|
|
permissions?: Array<ModulePermissions>
|
|
state?: ModuleState
|
|
}
|