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
29 lines (28 loc) • 1.26 kB
TypeScript
import { EntityEidType, BasicInfoAtomType, VisibleAtomType, EntityFlagAtomType, EntityOutlinerAtomType } from '../data-type';
/**
* @interface ProjectEntityAtomType
* @param {Record<string, any>} visualGroupToNodes
*/
export interface ProjectEntityAtomType {
visualGroupToNodes: Record<string, any>;
}
/**
* @interface ProjectType
* @extends EntityEidType,Partial<BasicInfoAtomType>,Partial<VisibleAtomType>,Partial<ProjectEntityAtomType>,Partial<EntityFlagAtomType>
*/
export interface ProjectType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<VisibleAtomType>, Partial<ProjectEntityAtomType>, Partial<EntityFlagAtomType>, Partial<EntityOutlinerAtomType> {
}
/**
* @interface IGenerate
* @param {Partial<ProjectEntityAtomType>} ProjectEntityAtom (optional)
* @param {Partial<BasicInfoAtomType>} BasicInfoAtom (optional)
* @param {Partial<VisibleAtomType>} VisibleAtom (optional)
* @param {Partial<EntityFlagAtomType>} EntityFlagAtom (optional)
*/
export interface IGenerate {
ProjectEntityAtom?: Partial<ProjectEntityAtomType>;
BasicInfoAtom?: Partial<BasicInfoAtomType>;
VisibleAtom?: Partial<VisibleAtomType>;
EntityFlagAtom?: Partial<EntityFlagAtomType>;
EntityOutlinerAtom?: Partial<EntityOutlinerAtomType>;
}