- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
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 }; |