UNPKG

element-plus

Version:

A Component Library for Vue 3

4 lines (3 loc) 291 B
import type { ComponentPublicInstance, Ref } from 'vue'; export type RefSetter = (el: Element | ComponentPublicInstance | undefined) => void; export declare const composeRefs: (...refs: (Ref<HTMLElement | undefined> | RefSetter)[]) => (el: Element | ComponentPublicInstance | null) => void;