rt-graphic-component/components/packages/Platform/GPPlatform.d.ts
joylink_zhaoerwei 3c81ca8a83 重新打包
2024-01-11 13:38:16 +08:00

14 lines
383 B
TypeScript

import { GraphicState } from 'jl-graphic';
import { JlPlatform } from './common/JlPlatform';
export interface IGPPlatformState extends GraphicState {
id?: number;
}
export declare class GPPlatform extends JlPlatform {
constructor();
get states(): IGPPlatformState;
doRepaint(): void;
buildRelation(): void;
saveRelations(): void;
loadRelations(): void;
}