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