12 lines
364 B
TypeScript
12 lines
364 B
TypeScript
import * as vue from "vue";
|
|
|
|
//#region ../../packages/hooks/use-calc-input-width/index.d.ts
|
|
declare function useCalcInputWidth(): {
|
|
calculatorRef: vue.ShallowRef<HTMLElement | undefined, HTMLElement | undefined>;
|
|
calculatorWidth: vue.Ref<number, number>;
|
|
inputStyle: vue.ComputedRef<{
|
|
minWidth: string;
|
|
}>;
|
|
};
|
|
//#endregion
|
|
export { useCalcInputWidth }; |