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

13 lines
265 B
TypeScript

export type NotificationMessage = {
id?: string
workspaceId?: string
[key: string]: unknown
}
export type SendNotification = (args: {
bodyContent: string
headerContent: string
userUrl?: string
sendToWorkflowOwner: boolean
}) => Promise<NotificationMessage>