mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 14:59:35 +00:00
13 lines
265 B
TypeScript
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>
|