13 lines
582 B
TypeScript
13 lines
582 B
TypeScript
|
import { JlGraphicTemplate } from 'jl-graphic';
|
||
|
import { JlPlatform } from './JlPlatform';
|
||
|
import { CategoryType, IPlatformData } from './PlatformConfig';
|
||
|
import { IXiAnPlatformState } from './XiAnPlatform';
|
||
|
import { IBeiJingPlatformState } from './BeiJingPlatform';
|
||
|
export declare class PlatformTemplate extends JlGraphicTemplate<JlPlatform> {
|
||
|
hasdoor?: boolean;
|
||
|
direction?: string;
|
||
|
categoryType: CategoryType;
|
||
|
constructor(dataTemplate: IPlatformData, stateTemplate: IXiAnPlatformState | IBeiJingPlatformState, categoryType: CategoryType);
|
||
|
new(): JlPlatform;
|
||
|
}
|