import { IFaultData } from "../engine/fault_data"; /** * A record that represents a fault code record from the engine system of the specific * populated with ignition cycle information. */ export interface IFaultDataByIgnitionCycle extends IFaultData { /** Gets the ignition cycle count for this instance of the . */ cycleCount: number; /** Gets the ignition cycle end time for this instance of the . */ cycleEndDateTime?: Date; } //# sourceMappingURL=fault_data_by_ignition_cycle.d.ts.map