mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-02-09 12:41:12 +00:00
8 lines
140 B
TypeScript
8 lines
140 B
TypeScript
import { SVGSelection } from "./models/types";
|
|
|
|
export interface Tool {
|
|
connect(selection: SVGSelection);
|
|
activate();
|
|
deactivate();
|
|
}
|