UNPKG

phx-node

Version:

PHX NODE

27 lines (26 loc) 818 B
import { AttendanceRedisService } from "./attendance-redis/attendance-redis.service"; export declare class PHXRedisService { private readonly attendanceRedisService; private readonly logger; private readonly internalGrpcGateway; constructor(attendanceRedisService: AttendanceRedisService); debug(hostname: string): void; attendance: { setAttendance: (args: { key: string; value: string; }) => Promise<any>; getAttendance: (args: { key: string; }) => Promise<any>; hsetAttendance: (args: { key: string; field: string; value: string; }) => Promise<any>; hgetAttendance: (args: { key: string; field: string; }) => Promise<any>; }; }