vuux
Version:
Vue3 Nuxt3 Nuxt4 组件库
29 lines (28 loc) • 975 B
TypeScript
import { Props } from './types';
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
left?(_: {}): any;
right?(_: {}): any;
};
refs: {
splitEl: HTMLDivElement;
};
rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
max: number;
left: number;
direction: "vertical" | "horizontal";
min: number;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
splitEl: HTMLDivElement;
}, HTMLDivElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};