12 lines
321 B
TypeScript
12 lines
321 B
TypeScript
import { NovuService } from '../services/novu.service';
|
|
export declare class NotificationController {
|
|
private readonly novuService;
|
|
private readonly logger;
|
|
constructor(novuService: NovuService);
|
|
getHealth(): Promise<{
|
|
status: string;
|
|
timestamp: string;
|
|
service: string;
|
|
}>;
|
|
}
|