Fixed #1836 - For ScrollPanel

pull/1846/head
mertsincan 2021-12-01 17:15:19 +03:00
parent 889b4a0614
commit 77bb9cab97
1 changed files with 27 additions and 5 deletions

View File

@ -1,12 +1,34 @@
import { VNode } from 'vue';
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
interface ScrollPanelProps {}
export interface ScrollPanelProps {
}
declare class ScrollPanel {
$props: ScrollPanelProps;
$slots: {
'': VNode[];
export interface ScrollPanelSlots {
/**
* Custom content slot.
*/
default: () => VNode[];
}
export declare type ScrollPanelEmits = {
}
declare class ScrollPanel extends ClassComponent<ScrollPanelProps, ScrollPanelSlots, ScrollPanelEmits> { }
declare module '@vue/runtime-core' {
interface GlobalComponents {
ScrollPanel: GlobalComponentConstructor<ScrollPanel>
}
}
/**
*
* ScrollPanel is a cross browser, lightweight and themable alternative to native browser scrollbar.
*
* Demos:
*
* - [ScrollPanel](https://www.primefaces.org/primevue/showcase/#/scrollpanel)
*
*/
export default ScrollPanel;