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

12 lines
287 B
TypeScript

export type SearchModulePermissionAiConfigurable = never
export type ModulePermissions = SearchModulePermissionAiConfigurable
export type ModuleState = never
export type SearchIntegration = {
type: "search"
name: string
permissions?: Array<ModulePermissions>
state?: ModuleState
}