wdpapi
Version:
51WORLD WdpApi is a set of programming interfaces developed by JavaScript that is responsible for negotiating between web pages and cloud rendering platforms. Supported by 51Cloud rendering platform, it enables the users to create any HTML5 UI element on
24 lines (23 loc) • 1.17 kB
TypeScript
import { EntityEidType, BasicInfoAtomType, TransformAtomType, AssetAtomType, VisibleAtomType, EntityFlagAtomType } from '../data-type';
import { MaterialAtomType } from './material';
/**
* @interface HierarchyType
* @extends EntityEidType,Partial<BasicInfoAtomType>,Partial<TransformAtomType>,Partial<VisibleAtomType>,Partial<MaterialAtomType>,Partial<AssetAtomType>,Partial<EntityFlagAtomType>
*/
export interface HierarchyType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType>, Partial<VisibleAtomType>, Partial<MaterialAtomType>, Partial<AssetAtomType>, Partial<EntityFlagAtomType> {
}
/**
* @interface IGenerate
* @param {Partial<AssetAtomType>} AssetAtom
* @param {Partial<BasicInfoAtomType>} BasicInfoAtom
* @param {Partial<TransformAtomType>} TransformAtom
* @param {Partial<VisibleAtomType>} VisibleAtom
* @param {Partial<EntityFlagAtomType>} EntityFlagAtom
*/
export interface IGenerate {
AssetAtom?: Partial<AssetAtomType>;
BasicInfoAtom?: Partial<BasicInfoAtomType>;
TransformAtom?: Partial<TransformAtomType>;
VisibleAtom?: Partial<VisibleAtomType>;
EntityFlagAtom?: Partial<EntityFlagAtomType>;
}