Files
standardnotes-server/packages/syncing-server/src/Domain/Notifications/NotificationProps.ts
T

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
}