From c659d3138e78e44c7c04c481a0d1069a5abeb65c Mon Sep 17 00:00:00 2001 From: Daybrush Date: Thu, 17 Feb 2022 18:36:40 +0900 Subject: [PATCH] fix: fix module paths --- src/ContainerManager.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ContainerManager.ts b/src/ContainerManager.ts index 9ec9727..6cfbaab 100644 --- a/src/ContainerManager.ts +++ b/src/ContainerManager.ts @@ -4,8 +4,9 @@ * MIT license */ import Component from "@egjs/component"; -import { DestroyOptions, RECT_NAMES, ResizeWatcher, SizeRect } from "."; -import { DEFAULT_GRID_OPTIONS } from "./consts"; +import { DestroyOptions, SizeRect } from "./types"; +import { ResizeWatcher } from "./ResizeWatcher"; +import { DEFAULT_GRID_OPTIONS, RECT_NAMES } from "./consts"; export interface ContainerManagerOptions { horizontal?: boolean;