14 lines
383 B
TypeScript
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;
|
|
}
|