rt-graphic-component/components/Platform/BeiJingPlatform.d.ts

12 lines
385 B
TypeScript
Raw Normal View History

2024-01-02 14:36:10 +08:00
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;
}