Files
QingLong/WebRoot/html/cdn/lib/hooks/use-attrs/index.d.ts
2025-08-15 09:13:13 +08:00

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 {};