finish the launch

This commit is contained in:
IDONTSUDO 2023-10-31 09:03:41 +03:00
parent 6ca82f8c2e
commit fbcfba3948
12 changed files with 58 additions and 92 deletions

View file

@ -3,10 +3,7 @@ import { IHashesCache } from "./files_change_notifier_service";
import { EventsFileChanger } from "../model/meta_data_file_manager_model";
import { Result } from "../helper/result";
import { TypedEvent } from "../helper/typed_event";
import {
Trigger,
TriggerType,
} from "../../features/triggers/trigger_model";
import { Trigger, TriggerType } from "../../features/triggers/trigger_model";
export class TriggerCallResult {
results: Array<TriggerSuccessResult | TriggerErrorReport>;
@ -50,7 +47,7 @@ export class TriggerErrorReport extends Error {
}
}
export class TriggerService extends TypedEvent<TriggerCallResult> {
context:any = {};
context: any = {};
constructor(trigger: Trigger, hashes: IHashesCache, path: string) {
super();