| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /**
- * Types for module hook events fired across the application
- */
- export type CommentAddedEvent = {
- projectId: string
- userId: string
- threadId: string
- messageId: string
- }
- export type CommentResolvedEvent = {
- projectId: string
- userId: string
- threadId: string
- }
- export type CommentReopenedEvent = {
- projectId: string
- userId: string
- threadId: string
- }
- export type CommentEditedEvent = {
- projectId: string
- userId: string
- threadId: string
- messageId: string
- }
- export type CommentDeletedEvent = {
- projectId: string
- userId: string
- threadId: string
- messageId: string
- }
- export type ThreadDeletedEvent = {
- projectId: string
- userId: string
- threadId: string
- }
- export type ProjectModifiedEvent = {
- projectId: string
- timestamp: number
- }
|