import { IEventType } from "./event_type"; /** An event that occurs when the oil needs to be changed. */ export interface IEventTypeOilChange extends IEventType { /** * @inheritdoc */ id: string; /** * @inheritdoc */ name: string; } //# sourceMappingURL=event_type_oil_change.d.ts.map