UNPKG

phx-node

Version:

PHX NODE

22 lines (21 loc) 849 B
import { Logger } from '@nestjs/common'; import { PHXGrpcClientSystemService } from "../grpc-client/grpc-client-system.service"; export declare class PHXStatisticalNotificationByModuleService { private readonly grpcClientSystemService; logger: Logger; constructor(grpcClientSystemService: PHXGrpcClientSystemService); /** * update statistical notification by module */ updateStatisticalNotificationByModule({ userId, deviceId, appName, hostname, moduleCode, action, studentCode, totalNotification, totalNotificationImportant, }: { userId: number; deviceId: string; hostname: string; appName: string; moduleCode: string; studentCode?: string; action?: string; totalNotification: number; totalNotificationImportant: number; }): Promise<void>; }