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
281 B
TypeScript
14 lines
281 B
TypeScript
export type ModulePermission = {
|
|
identifier: string
|
|
actions: ["search"]
|
|
}
|
|
|
|
export type ModulePermissions = ModulePermission
|
|
export type ModuleState = never
|
|
|
|
export type JiraIntegration = {
|
|
type: "jira"
|
|
name: string
|
|
permissions?: Array<ModulePermissions>
|
|
state?: ModuleState
|
|
} |