phx-node
Version:
PHX NODE
10 lines (9 loc) • 515 B
TypeScript
import { TStudentInfo } from "src/lib/types/student-info";
import { PHXGrpcClientService } from "../grpc-client/grpc-client.service";
import { PHXGrpcClientSystemService } from "../grpc-client/grpc-client-system.service";
export declare class PHXStudentInfoServiceV3 {
private readonly grpcService;
private readonly grpcSystemService;
constructor(grpcService: PHXGrpcClientService, grpcSystemService: PHXGrpcClientSystemService);
get(student_id: number, hostname?: string): Promise<TStudentInfo>;
}