@farris/ui-vue
Version:
Farris Vue, a Farris Design based Vue3 component library.
19 lines (18 loc) • 783 B
TypeScript
import { Ref } from "vue";
import { WizardPageProps } from "./wizard-page.props";
import { WizardContext } from "../composition/types";
export type WizardPageContext = Pick<WizardContext, 'wizardPageList'> & {
activeId: Ref<string>;
activeIndex: Ref<number>;
wizardProps: WizardPageProps;
};
declare const _default: import("vue").DefineComponent<{
[x: string]: any;
}, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "pageSelected"[], "pageSelected", import("vue").PublicProps, Readonly<{
[x: string]: any;
}> & Readonly<{
onPageSelected?: ((...args: any[]) => any) | undefined;
}>, {
[x: string]: any;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default _default;