mirror of
https://github.com/standardnotes/server
synced 2026-07-31 05:16:40 -04:00
9 lines
239 B
TypeScript
9 lines
239 B
TypeScript
import { NotificationPayload, NotificationType, Timestamps, Uuid } from '@standardnotes/domain-core'
|
|
|
|
export interface NotificationProps {
|
|
userUuid: Uuid
|
|
type: NotificationType
|
|
payload: NotificationPayload
|
|
timestamps: Timestamps
|
|
}
|