index.d.ts 246 B

1234567
  1. export declare function useCalcInputWidth(): {
  2. calculatorRef: import("vue").ShallowRef<HTMLElement | undefined>;
  3. calculatorWidth: import("vue").Ref<number>;
  4. inputStyle: import("vue").ComputedRef<{
  5. minWidth: string;
  6. }>;
  7. };