UNPKG

phx-node

Version:

PHX NODE

19 lines (18 loc) 784 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); 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>; }