8 lines
140 B
TypeScript
Raw Normal View History

2018-03-27 17:50:06 +02:00
import { SVGSelection } from "./models/types";
2018-03-13 13:03:27 +01:00
export interface Tool {
connect(selection: SVGSelection);
2018-03-13 15:05:50 +01:00
activate();
deactivate();
2018-03-13 13:03:27 +01:00
}