mirror of
https://github.com/immich-app/immich.git
synced 2025-01-10 05:46:46 +01:00
8ebac41318
* refactor(server): tsconfigs * chore: dummy commit * fix: start.sh * chore: restore original entry scripts
9 lines
259 B
TypeScript
9 lines
259 B
TypeScript
export const ICommunicationRepository = 'ICommunicationRepository';
|
|
|
|
export enum CommunicationEvent {
|
|
UPLOAD_SUCCESS = 'on_upload_success',
|
|
}
|
|
|
|
export interface ICommunicationRepository {
|
|
send(event: CommunicationEvent, userId: string, data: any): void;
|
|
}
|