8 lines
222 B
TypeScript
8 lines
222 B
TypeScript
import type { ComputedRef } from 'vue';
|
|
interface Params {
|
|
excludeListeners?: boolean;
|
|
excludeKeys?: string[];
|
|
}
|
|
export declare const useAttrs: (params?: Params) => ComputedRef<Record<string, unknown>>;
|
|
export {};
|