t-ui-plus
Version:
Page level components developed based on Element Plus.
110 lines (109 loc) • 3.52 kB
TypeScript
import { CreateComponentPublicInstanceWithMixins, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
import { StepItem } from './src/type';
export * from './src/type';
export declare const TStepWizard: {
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
stepData: {
type: PropType< StepItem[]>;
default: () => never[];
};
successTitle: {
type: PropType<string>;
default: string;
};
lastBtnTitle: {
type: PropType<string>;
default: string;
};
active: {
type: PropType<number>;
default: number;
};
isShowLastSuccess: {
type: PropType<boolean>;
default: boolean;
};
}>> & Readonly<{
onComplete?: ((...args: any[]) => any) | undefined;
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
complete: (...args: any[]) => void;
}, PublicProps, {
stepData: StepItem[];
successTitle: string;
lastBtnTitle: string;
active: number;
isShowLastSuccess: boolean;
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
P: {};
B: {};
D: {};
C: {};
M: {};
Defaults: {};
}, Readonly< ExtractPropTypes<{
stepData: {
type: PropType< StepItem[]>;
default: () => never[];
};
successTitle: {
type: PropType<string>;
default: string;
};
lastBtnTitle: {
type: PropType<string>;
default: string;
};
active: {
type: PropType<number>;
default: number;
};
isShowLastSuccess: {
type: PropType<boolean>;
default: boolean;
};
}>> & Readonly<{
onComplete?: ((...args: any[]) => any) | undefined;
}>, {}, {}, {}, {}, {
stepData: StepItem[];
successTitle: string;
lastBtnTitle: string;
active: number;
isShowLastSuccess: boolean;
}>;
__isFragment?: never;
__isTeleport?: never;
__isSuspense?: never;
} & ComponentOptionsBase<Readonly< ExtractPropTypes<{
stepData: {
type: PropType< StepItem[]>;
default: () => never[];
};
successTitle: {
type: PropType<string>;
default: string;
};
lastBtnTitle: {
type: PropType<string>;
default: string;
};
active: {
type: PropType<number>;
default: number;
};
isShowLastSuccess: {
type: PropType<boolean>;
default: boolean;
};
}>> & Readonly<{
onComplete?: ((...args: any[]) => any) | undefined;
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
complete: (...args: any[]) => void;
}, string, {
stepData: StepItem[];
successTitle: string;
lastBtnTitle: string;
active: number;
isShowLastSuccess: boolean;
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
$slots: Partial<Record<NonNullable<string | number>, (_: any) => any>> & Partial<Record<string, (_: {}) => any>>;
});