module-hooks.ts 182 B

12345678910
  1. /**
  2. * Types for module hook events fired across the application
  3. */
  4. export type CommentAddedEvent = {
  5. projectId: string
  6. userId: string
  7. threadId: string
  8. messageId: string
  9. }