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
338 B
TypeScript
13 lines
338 B
TypeScript
import type { NotionComment, NotionDiscussion } from "./triggers"
|
|
|
|
export type GetPageDiscussions = (args: {
|
|
pageUrl: string
|
|
includeResolved?: boolean
|
|
}) => Promise<Array<NotionDiscussion>>
|
|
|
|
export type AddCommentToDiscussion = (args: {
|
|
discussionUrl: string
|
|
text: string
|
|
attachedFileIds?: Array<string>
|
|
}) => Promise<NotionComment>
|