rt-graphic-component/components/packages/Platform/PlatformTemplate.d.ts

14 lines
588 B
TypeScript
Raw Normal View History

2024-01-04 10:40:55 +08:00
import { JlGraphicTemplate } from 'jl-graphic';
import { JlPlatform } from './JlPlatform';
2024-01-10 15:46:15 +08:00
import { IPlatformData } from './PlatformConfig';
import { ITHPlatformState } from './THPlatform';
import { IBeiJingPlatformState } from './GPPlatform';
import { StyleType } from 'common/common';
2024-01-04 10:40:55 +08:00
export declare class PlatformTemplate extends JlGraphicTemplate<JlPlatform> {
hasdoor?: boolean;
direction?: string;
2024-01-10 15:46:15 +08:00
styleType: StyleType;
constructor(dataTemplate: IPlatformData, stateTemplate: ITHPlatformState | IBeiJingPlatformState, styleType: StyleType);
2024-01-04 10:40:55 +08:00
new(): JlPlatform;
}