dd-timer/src/domain/ports/NotificationPort.ts
POL Mickaël 3e485fd09b chore: normalise fins de ligne CRLF → LF dans tout le repo
Applique .gitattributes sur tous les fichiers existants.
Élimine les différences fantômes entre WSL et Windows.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 08:55:10 +02:00

5 lines
170 B
TypeScript
Executable File

export interface NotificationPort {
showNotification(title: string, body: string): void;
sendMobileNotification(url: string, title: string, message: string): void;
}