14 lines
578 B
TypeScript
14 lines
578 B
TypeScript
import { JlGraphicTemplate } from 'jl-graphic';
|
|
import { JlPlatform } from './JlPlatform';
|
|
import { IPlatformData } from './PlatformConfig';
|
|
import { ITHPlatformState } from './THPlatform';
|
|
import { IGPPlatformState } from './GPPlatform';
|
|
import { StyleType } from 'common/common';
|
|
export declare class PlatformTemplate extends JlGraphicTemplate<JlPlatform> {
|
|
hasdoor?: boolean;
|
|
direction?: string;
|
|
styleType: StyleType;
|
|
constructor(dataTemplate: IPlatformData, stateTemplate: ITHPlatformState | IGPPlatformState, styleType: StyleType);
|
|
new(): JlPlatform;
|
|
}
|