mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 01:42:34 +00:00
28 lines
447 B
TypeScript
28 lines
447 B
TypeScript
import { VNode } from 'vue';
|
|
|
|
interface DockProps {
|
|
position?: string;
|
|
model?: any[];
|
|
class?: string;
|
|
style?: any;
|
|
exact?: boolean;
|
|
tooltipOptions?: any;
|
|
}
|
|
|
|
interface DockItemSlotInterface {
|
|
item: any;
|
|
}
|
|
|
|
interface DockIconSlotInterface {
|
|
item: any;
|
|
}
|
|
|
|
declare class Dock {
|
|
$props: DockProps;
|
|
$slots: {
|
|
item: DockItemSlotInterface;
|
|
icon: DockIconSlotInterface;
|
|
}
|
|
}
|
|
|
|
export default Dock;
|