rt-graphic-component/components/Platform/BeiJingPlatform.d.ts
2024-01-02 14:36:14 +08:00

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;
}