index.d.ts 294 B

12345678910
  1. import { ComputedRef } from "vue";
  2. //#region ../../packages/hooks/use-attrs/index.d.ts
  3. interface Params {
  4. excludeListeners?: boolean;
  5. excludeKeys?: ComputedRef<string[]>;
  6. }
  7. declare const useAttrs: (params?: Params) => ComputedRef<Record<string, unknown>>;
  8. //#endregion
  9. export { useAttrs };