system-prompts-and-models-o.../NotionAi/notion-ai_20260322/modules/web/integration.ts
2026-03-22 18:31:30 +08:00

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
}