This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-js/lib/src/widget/draggable.d.ts
2020-04-16 19:28:23 +08:00

7 lines
269 B
TypeScript

import { View } from "../ui/view";
import { Stack } from "../widget/layouts";
export declare class Draggable extends Stack {
onDrag?: (x: number, y: number) => void;
}
export declare function draggable(views: View | View[], config?: Partial<Draggable>): Draggable;