rt-graphic-component/components/Platform/BeiJingPlatform.d.ts
joylink_zhaoerwei 023058ebb0 测试站台
2024-01-03 09:30:56 +08:00

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