11 lines
305 B
TypeScript
11 lines
305 B
TypeScript
import { GraphicState } from 'jl-graphic';
|
|
import { JlPlatform } from './JlPlatform';
|
|
export interface IBeiJingPlatformState extends GraphicState {
|
|
id?: number;
|
|
}
|
|
export declare class GPPlatform extends JlPlatform {
|
|
constructor();
|
|
get states(): IBeiJingPlatformState;
|
|
doRepaint(): void;
|
|
}
|