UNPKG

equal-vue

Version:

Equal is a Vue 3 hackable UI library empowered by tailwindcss

10 lines (9 loc) 209 B
import { Ref } from 'vue'; export type TEmit = (event: string, ...args: unknown[]) => void; export type TProps = { [key: string]: any; }; export interface IEqual { drawers: Ref[]; modals: Ref[]; }