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