15 lines
445 B
TypeScript
Raw Normal View History

2024-01-29 09:26:07 +08:00
import { type ComputedRef, type PropType } from 'vue';
interface UseAdjustedToProps {
to?: string | HTMLElement | boolean;
[key: string]: unknown;
}
declare function useAdjustedTo(props: UseAdjustedToProps): ComputedRef<HTMLElement | string>;
declare namespace useAdjustedTo {
var tdkey: string;
var propTo: {
2024-08-02 18:19:39 +08:00
type: PropType<HTMLElement | string | boolean>;
2024-01-29 09:26:07 +08:00
default: undefined;
};
}
export { useAdjustedTo };