UNPKG

phx-node-test

Version:

PHX NODE

13 lines (12 loc) 387 B
import { Logger } from "@nestjs/common"; export interface IBuildContent { student_id: number; module_code: string; month_id: number; detail_id?: number; } export declare class PHXTransactionContentService { logger: Logger; buildContent({ student_id, module_code, month_id, detail_id, }: IBuildContent): string; parseContent(transactionContent: string): {}; }