151a8421603bff4f3bcb54b45fe1877b7abf36200b0c69b116930f54d0e2bd8850cb2b39e44daf54598036a46c9ed606c152507dc193afd8b212ce7afd919a 320 B

1234567
  1. import type { Ref } from 'vue';
  2. import type { DrawerProps } from '../drawer';
  3. export declare function useResizable(props: DrawerProps, target: Ref<HTMLElement | undefined>): {
  4. size: import("vue").ComputedRef<string | undefined>;
  5. isResizing: Ref<boolean>;
  6. isHorizontal: import("vue").ComputedRef<boolean>;
  7. };