2024-01-29 09:26:07 +08:00

5 lines
343 B
TypeScript

import { VNodeChild, VNode, Slots } from 'vue';
export declare function getSlot(scope: string, slots: Slots, slotName?: string): VNode[];
export declare function flatten(vNodes: VNodeChild[], filterCommentNode?: boolean, result?: VNode[]): VNode[];
export declare function getFirstVNode(scope: string, slots: Slots, slotName?: string): VNode;