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

14 lines
580 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;
}