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

14 lines
295 B
TypeScript

export type ModulePermission = {
identifier: string
actions: ["search"]
}
export type ModulePermissions = ModulePermission
export type ModuleState = never
export type GoogleDriveIntegration = {
type: "googleDrive"
name: string
permissions?: Array<ModulePermissions>
state?: ModuleState
}