t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
17 lines (14 loc) • 396 B
TypeScript
import type { Ref } from 'vue'
import type { OrdinaryFunctionInterface as a } from '../../_interface'
import type { OnImgMousewheelInterface as b } from './interface'
export interface OnImgMousewheelInterface {
(evt: WheelEvent): void
}
export interface UseOperationImgReturnInterface {
scale: Ref<number>
rotate: Ref<number>
smaller: a
bigger: a
onImgMousewheel: b
recovery: a
}