vuestic-ui
Version:
Vue 3 UI Framework
11 lines (10 loc) • 630 B
TypeScript
import { VNode, Slot } from 'vue';
type NodeAttributes = Record<string, any>;
/** Renders node, apply slot bind and attributes to actual HTML Node, not vue pseudo elements */
export declare const renderSlotNode: (slot: Slot | undefined, slotBind?: any, nodeAttributes?: NodeAttributes) => VNode<import("vue").RendererNode, import("vue").RendererElement, {
[key: string]: any;
}> | null;
export declare const renderSlotNodes: (slot: Slot | undefined, slotBind?: any, nodeAttributes?: NodeAttributes) => (VNode<import("vue").RendererNode, import("vue").RendererElement, {
[key: string]: any;
}> | null)[] | null;
export {};