refactoring circular imports

This commit is contained in:
Hristo Hristov
2017-03-06 14:01:22 +02:00
parent 347755367e
commit ea22eb9c20
82 changed files with 2229 additions and 2188 deletions

View File

@@ -1,7 +1,10 @@
import { WrappedValue } from "data/observable";
import { ViewBase } from "./view-base";
import { Style } from "ui/styling/style";
// Definitions.
import * as definitions from "ui/core/view-base";
import { ViewBase } from "./view-base";
// Types.
import { WrappedValue } from "data/observable";
import { Style } from "ui/styling/style";
export { Style };