Files
dsProject/dsBase/WebRoot/html/cdn/es/hooks/use-attrs/index.d.ts

8 lines
222 B
TypeScript
Raw Normal View History

2025-08-14 15:45:08 +08:00
import type { ComputedRef } from 'vue';
interface Params {
excludeListeners?: boolean;
excludeKeys?: string[];
}
export declare const useAttrs: (params?: Params) => ComputedRef<Record<string, unknown>>;
export {};