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

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
}