11 lines
295 B
TypeScript
11 lines
295 B
TypeScript
import { GraphicState } from 'jl-graphic';
|
|
import { JlStation } from './common/JlStation';
|
|
export interface IGPStationState extends GraphicState {
|
|
id: number;
|
|
}
|
|
export declare class GPStation extends JlStation {
|
|
constructor();
|
|
get states(): IGPStationState;
|
|
doRepaint(): void;
|
|
}
|