@wdp-api/wim-api
Version:
51WORLD WIM Api is a JavaScript plugin for WdpApi, It provides a set of APIs for developers to integrate WIM into their own applications.
20 lines (19 loc) • 727 B
TypeScript
import { EntityEidType, BasicInfoAtomType, TransformAtomType, VisibleAtomType } from './data-type';
export interface IWimPipeBaseInfoAtom {
pipeUrl: string;
parserType: string;
}
export interface IWimPipeBaseInfoAtomType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType>, Partial<VisibleAtomType> {
wimPipeStyle?: Partial<IWimPipeBaseInfoAtom>;
}
export interface IGenerate {
WimPipeBaseInfoAtom?: Partial<IWimPipeBaseInfoAtom>;
BasicInfoAtom?: Partial<BasicInfoAtomType>;
TransformAtom?: Partial<TransformAtomType>;
VisibleAtom?: Partial<VisibleAtomType>;
}
export interface ICreateWimPipeEntity {
pipeUrl: string;
parserType: string;
parserGroup: string;
}