@robotical/sensors-dashboard
Version:
A dashboard tool for depicting Marty data by Robotical
19 lines (15 loc) • 479 B
text/typescript
import EventDispatcher from "./EventDispatcher";
export default class RaftInterface extends EventDispatcher {
// setIsModal(isModal: boolean) {
// if (isModal !== this.isModal) {
// this.isModal = isModal;
// this.dispatchEvent({
// type: "onIsModalChange",
// isModal: this.isModal,
// });
// }
// }
unsubscribeFromPublishedData() {
// will be implemented in the child class
}
}