import { IDataDiagnostic } from "../engine/data_diagnostic"; import { IEngineType } from "../engine/engine_type"; /** A diagnostic that originates from a Go Device. */ export interface IGoDiagnostic extends IDataDiagnostic { /** * @inheritdoc */ engineType?: IEngineType; } //# sourceMappingURL=go_diagnostic.d.ts.map