import { IDevice } from "../device"; import { IDriver } from "../driver"; /** * Base class for all Exceptions. * * @deprecated */ export interface IExceptionInstance { /** Gets the date of this exception instance. */ dateTime?: Date; /** Gets the {@link IDevice} of the {@link IExceptionInstance}. */ device: IDevice; /** Gets the Driver" /> of the {@link ExceptionInstance} . */ driver: IDriver; } //# sourceMappingURL=exception_instance.d.ts.map