/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import type { Machine } from "jssm"; import type { CommandLogger } from "../logging.js"; import type { MachineState } from "../machines/index.js"; import { BaseStateHandler } from "./stateHandlers.js"; /** * A base class that handles the "Init" and "Failed" states in a state machine. These states are commonly used in state * machines so this class serves as a base class for machine-specific handlers. */ export declare abstract class InitFailedStateHandler extends BaseStateHandler { handleState(state: MachineState, machine: Machine, testMode: boolean, _log: CommandLogger, _data: unknown): Promise; } //# sourceMappingURL=initFailedStateHandler.d.ts.map