You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
294 B
TypeScript
10 lines
294 B
TypeScript
import { ComputedRef } from "vue";
|
|
|
|
//#region ../../packages/hooks/use-attrs/index.d.ts
|
|
interface Params {
|
|
excludeListeners?: boolean;
|
|
excludeKeys?: ComputedRef<string[]>;
|
|
}
|
|
declare const useAttrs: (params?: Params) => ComputedRef<Record<string, unknown>>;
|
|
//#endregion
|
|
export { useAttrs }; |