Add InstallLinuxChecksEvent (I forgot to save lol)

This commit is contained in:
Noah Gilson 2024-01-03 14:19:07 -08:00
Родитель 0067911da4
Коммит 30fbdca9ed
2 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -10,6 +10,7 @@ import
DotnetAcquisitionDistroUnknownError,
DotnetConflictingLinuxInstallTypesError,
DotnetCustomLinuxInstallExistsError,
DotnetInstallLinuxChecks,
DotnetUpgradedEvent
} from '../EventStream/EventStreamEvents';
import { GenericDistroSDKProvider } from './GenericDistroSDKProvider'

Просмотреть файл

@ -541,6 +541,10 @@ export class DotnetUpgradedEvent extends DotnetCustomMessageEvent {
public readonly eventName = 'DotnetUpgradedEvent';
}
export class DotnetInstallLinuxChecks extends DotnetCustomMessageEvent {
public readonly eventName = 'DotnetInstallLinuxChecks';
}
export abstract class DotnetFileEvent extends DotnetAcquisitionMessage
{
constructor(public readonly eventMessage: string, public readonly time: string, public readonly file: string) { super(); }