import { JlStation } from './common/JlStation.js'; import { StyleType } from '../../common/common.js'; class GPStation extends JlStation { constructor() { super(StyleType.GP); } get states() { return this.getStates(); } doRepaint() { super.doRepaint(); } } export { GPStation };