CIDARLAB / 3DuF

Found interfaces with call signatures JS-0362
Anti-pattern
Minor
15 days ago15 days old
Interface only has a call signature, you should use a function type instead
 3import ViewManager from "../viewManager";
 4
 5export interface MouseToolCallback {
 6    (event: MouseEvent): void; 7}
 8export default class MouseTool {
 9