system-prompts-and-models-o.../NotionAi/notion-ai_20260322/modules/web/integration.ts

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
}