@ibm/ibmi-eventf-parser
Version:
Parse event files that are generated by IBM i compilers
20 lines (19 loc) • 375 B
TypeScript
import { IRecordT } from "./IRecordT";
export interface IRecord {
/**
* Get the record type.
*
* @return The record type.
*/
getRecordType(): IRecordT;
/**
* Get the version.
*
* @return The version.
*/
getVersion(): number;
/**
* Get the string representation of the record.
*/
toString(): string;
}