@wfrog/vc
Version:
vue3 组件库 vc
37 lines (36 loc) • 1.38 kB
TypeScript
import { ISyncScrollContainerProps } from './sync-scroll-container';
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
corner?(_: {}): any;
header?(_: {}): any;
sidebar?(_: {}): any;
default?(_: {}): any;
};
refs: {
wrapperRef: HTMLDivElement;
headerRef: HTMLDivElement;
headerContainerRef: HTMLDivElement;
sidebarContainerRef: HTMLDivElement;
bodyContainerRef: HTMLDivElement;
};
rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<ISyncScrollContainerProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ISyncScrollContainerProps> & Readonly<{}>, {
border: boolean;
shadow: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
wrapperRef: HTMLDivElement;
headerRef: HTMLDivElement;
headerContainerRef: HTMLDivElement;
sidebarContainerRef: HTMLDivElement;
bodyContainerRef: 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;
};
};