@microsoft/windows-admin-center-sdk
Version:
Microsoft - Windows Admin Center Shell
19 lines (18 loc) • 546 B
TypeScript
import { SnapInOutput } from '../../../data/extension-broker/snap-in-listener';
/**
* The model representation snap-in output that is specific to a wizard step.
*/
export interface WizardStepSnapInOutput extends SnapInOutput {
/**
* Whether or not the step is valid, enabling the next button.
*/
isValid: boolean;
/**
* Whether or not the step is currently running an important process.
*/
isBusy: boolean;
/**
* Custom message when it's busy.
*/
busyMessage?: string;
}