@wocwin/t-ui-plus
Version:
Page level components developed based on Element Plus.
94 lines (92 loc) • 3.14 kB
TypeScript
import { TModuleFormProps } from './type';
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
declare function __VLS_template(): Partial<Record<NonNullable<string | number>, (_: any) => any>> & Partial<Record<NonNullable<string | number>, (_: any) => any>> & Partial<Record<string, (_: {}) => any>> & Partial<Record<string, (_: {}) => any>> & {
title?(_: {}): any;
extra?(_: {}): any;
default?(_: {}): any;
footer?(_: {}): any;
};
declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TModuleFormProps>, {
handleType: string;
isShowHeader: boolean;
titleSlot: boolean;
isShowBack: boolean;
isGoBackEvent: boolean;
btnSaveBind: () => {};
btnCancelBind: () => {};
isTabMargin: boolean;
tabMarginNum: number;
title: string;
subTitle: string;
tabs: () => never[];
submit: () => Promise<boolean>;
}>, {
clearValidate: () => void;
resetFormFields: () => void;
updateFormFields: () => void;
setSelectedTab: (key: any) => void;
saveHandle: () => Promise<void>;
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
validateError: (...args: any[]) => void;
back: (...args: any[]) => void;
tabsChange: (...args: any[]) => void;
}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TModuleFormProps>, {
handleType: string;
isShowHeader: boolean;
titleSlot: boolean;
isShowBack: boolean;
isGoBackEvent: boolean;
btnSaveBind: () => {};
btnCancelBind: () => {};
isTabMargin: boolean;
tabMarginNum: number;
title: string;
subTitle: string;
tabs: () => never[];
submit: () => Promise<boolean>;
}>>> & {
onValidateError?: ((...args: any[]) => any) | undefined;
onBack?: ((...args: any[]) => any) | undefined;
onTabsChange?: ((...args: any[]) => any) | undefined;
}, {
title: string;
submit: (form: Record<string, any>) => Promise<boolean>;
handleType: "edit" | "desc";
isShowHeader: boolean;
titleSlot: boolean;
isShowBack: boolean;
isGoBackEvent: boolean;
btnSaveBind: Record<string, any>;
btnCancelBind: Record<string, any>;
isTabMargin: boolean;
tabMarginNum: number;
subTitle: string;
tabs: Array<{
key: string;
title: string;
}>;
}, {}>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
export default _default;
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
type __VLS_TypePropsToRuntimeProps<T> = {
[K in keyof T]-?: {} extends Pick<T, K> ? {
type: PropType<__VLS_NonUndefinedable<T[K]>>;
} : {
type: PropType<T[K]>;
required: true;
};
};
type __VLS_WithDefaults<P, D> = {
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
default: D[K];
}> : P[K];
};
type __VLS_Prettify<T> = {
[K in keyof T]: T[K];
} & {};
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};