useStretchStyle.d.ts 252 B

1234
  1. import type { ComputedRef, CSSProperties, Ref } from 'vue';
  2. import type { StretchType } from '../interface';
  3. declare const _default: (stretch?: Ref<StretchType>) => [ComputedRef<CSSProperties>, (element: HTMLElement) => void];
  4. export default _default;