@farris/ui-vue
Version:
Farris Vue, a Farris Design based Vue3 component library.
11 lines (10 loc) • 382 B
TypeScript
import { InjectionKey, Ref } from "vue";
import { WizardProps } from "../wizard.props";
export interface WizardContext {
wizardPageList: Ref<string[]>;
wizardProps: WizardProps;
updateCurrentPageId: (id: string) => void;
[key: string]: any;
}
export declare const WizardContextKey: InjectionKey<WizardContext>;
export declare const WizardPageKey: InjectionKey<any>;