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

18 lines
411 B
TypeScript

import type { TestModulePermissionAiConfigurable } from "./types"
export type {
TestModulePermissionAction,
TestModulePermission,
TestModulePermissionAiConfigurable,
} from "./types"
export type ModulePermissions = TestModulePermissionAiConfigurable
export type ModuleState = never
export type TestIntegration = {
type: "test"
name: string
permissions?: Array<ModulePermissions>
state?: ModuleState
}