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