UNPKG

dkt-plus

Version:

Decathlon component library built in Vue3 with TypeScript.

8 lines (7 loc) 227 B
import type { ComputedRef } from 'vue'; interface Params { excludeListeners?: boolean; excludeKeys?: Array<string>; } export declare const useAttrs: (params?: Params) => ComputedRef<Record<string, unknown>>; export {};