UNPKG

@ibm/ibmi-eventf-parser

Version:

Parse event files that are generated by IBM i compilers

20 lines (19 loc) 492 B
import { IRecordT } from './IRecordT'; import { IRecord } from './IRecord'; /** * This class represents a Timestamp record in an events file. */ export declare class TimestampRecord implements IRecord { private version; private timestamp; constructor(version: number, timestamp: string); getRecordType(): IRecordT; getVersion(): number; /** * Get the timestamp. * * @return The timestamp. */ getTimestamp(): string; toString(): string; }