index.d.ts 235 B

1234567
  1. import type { ComputedRef } from 'vue';
  2. interface Params {
  3. excludeListeners?: boolean;
  4. excludeKeys?: ComputedRef<string[]>;
  5. }
  6. export declare const useAttrs: (params?: Params) => ComputedRef<Record<string, unknown>>;
  7. export {};