symref
Version:
Static code checker for AI code agents (Windsurf, Cline, etc.)
11 lines • 494 B
TypeScript
import { INotification, INotificationService, IUserService } from './types.js';
export declare class NotificationService implements INotificationService {
private notifications;
private userService;
constructor(userService?: IUserService);
setUserService(userService: IUserService): void;
notify(notification: INotification): void;
getNotificationsForUser(userId: string): INotification[];
private logNotification;
}
//# sourceMappingURL=NotificationService.d.ts.map