mirror of
https://github.com/standardnotes/server
synced 2026-07-14 00:01:54 -04:00
* fix: transfer notifications from auth to syncing-server. Co-authored-by: Mo <[email protected]> * fix: add notification to data source init --------- Co-authored-by: Mo <[email protected]>
6 lines
150 B
TypeScript
6 lines
150 B
TypeScript
import { Notification } from './Notification'
|
|
|
|
export interface NotificationRepositoryInterface {
|
|
save(notification: Notification): Promise<void>
|
|
}
|