@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
11 lines • 416 B
TypeScript
import { PossibleActionsEnum } from './PossibleActionsEnum';
/** Node possible actions */
export interface PossibleActions {
/** A string representation of the action to be performed */
action: PossibleActionsEnum;
/** Is the action currently possible to perform */
isPossible: boolean;
/** Reason the action is not possible */
reason?: string;
}
//# sourceMappingURL=PossibleActions.d.ts.map