chore: resolve incorrect imports

This commit is contained in:
VladimirAmiorkov
2019-08-01 15:22:21 +03:00
parent 6e7470c79d
commit 98fa13c51d
2 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
import { LayoutBase as LayoutBaseDefinition } from "./layout-base";
import { View, CustomLayoutView, Property, AddChildFromBuilder, getViewById, Length, booleanConverter } from "../core/view";
import { View, CustomLayoutView, Property, AddChildFromBuilder, getViewById, Length, booleanConverter } from "../../core/view";
export * from "../core/view";
export * from "../../core/view";
export class LayoutBaseCommon extends CustomLayoutView implements LayoutBaseDefinition, AddChildFromBuilder {

View File

@@ -2,9 +2,9 @@
* @module "ui/layouts/layout-base"
*/ /** */
import { View, CustomLayoutView, Property, Length } from "../core/view";
import { View, CustomLayoutView, Property, Length } from "../../core/view";
export * from "../core/view";
export * from "../../core/view";
/**
* Base class for all views that supports children positioning.