@carbon/ibm-products-web-components
Version:
Carbon for IBM Products Web Components
25 lines • 653 B
TypeScript
/**
* Copyright IBM Corp. 2025, 2025
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
interface formStateType {
[key: string]: any;
}
export declare class StepInstance {
#private;
get data(): {
totalSteps: number;
formState: {};
currentStep: number;
};
set handleGoToStep(value: number);
set updateTotalStepCount(value: number);
set updateFormState(newFormValue: formStateType);
handleNext(): void;
handlePrevious(): void;
reset(): void;
}
export {};
//# sourceMappingURL=step-flow-signal.d.ts.map