mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 14:59:35 +00:00
12 lines
275 B
TypeScript
12 lines
275 B
TypeScript
export type WebModulePermissionAiConfigurable = never
|
|
|
|
export type ModulePermissions = WebModulePermissionAiConfigurable
|
|
export type ModuleState = never
|
|
|
|
export type WebIntegration = {
|
|
type: "web"
|
|
name: string
|
|
permissions?: Array<ModulePermissions>
|
|
state?: ModuleState
|
|
}
|