- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
24 lines
775 B
TypeScript
24 lines
775 B
TypeScript
import { WidgetsService } from './widgets.service';
|
|
export declare class WidgetsController {
|
|
private readonly widgetsService;
|
|
constructor(widgetsService: WidgetsService);
|
|
getSummary(req: any): Promise<import("./widgets.service").WidgetSummary>;
|
|
getAlerts(req: any): Promise<import("./widgets.service").WidgetAlert[]>;
|
|
getQuickActions(): {
|
|
id: string;
|
|
title: string;
|
|
icon: string;
|
|
deepLink: string;
|
|
}[];
|
|
getFullWidgetData(req: any): Promise<{
|
|
summary: import("./widgets.service").WidgetSummary;
|
|
alerts: import("./widgets.service").WidgetAlert[];
|
|
quickActions: {
|
|
id: string;
|
|
title: string;
|
|
icon: string;
|
|
deepLink: string;
|
|
}[];
|
|
}>;
|
|
}
|