@visactor/vrender-core
Version:
```typescript import { xxx } from '@visactor/vrender-core'; ```
13 lines (8 loc) • 442 B
JavaScript
import { ContainerModule } from "../../common/inversify-lite";
import { DefaultGraphicService } from "./graphic-service";
import { GraphicCreator, GraphicService } from "../constants";
import { graphicCreator } from "../graphic-creator";
export default new ContainerModule((bind => {
bind(GraphicService).to(DefaultGraphicService), bind(GraphicCreator).toConstantValue(graphicCreator);
}));
//# sourceMappingURL=graphic-module.js.map