8000 chore: resolve incorrect imports · NativeScript/NativeScript@98fa13c · GitHub
[go: up one dir, main page]

Skip to content

Commit 98fa13c

Browse files
author
VladimirAmiorkov
committed
chore: resolve incorrect imports
1 parent 6e7470c commit 98fa13c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tns-core-modules/ui/layouts/layout-base/layout-base-common.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { LayoutBase as LayoutBaseDefinition } from "./layout-base";
2-
import { View, CustomLayoutView, Property, AddChildFromBuilder, getViewById, Length, booleanConverter } from "../core/view";
2+
import { View, CustomLayoutView, Property, AddChildFromBuilder, getViewById, Length, booleanConverter } from "../../core/view";
33

4-
export * from "../core/view";
4+
export * from "../../core/view";
55

66
export class LayoutBaseCommon extends CustomLayoutView implements LayoutBaseDefinition, AddChildFromBuilder {
77

tns-core-modules/ui/layouts/layout-base/layout-base.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
* @module "ui/layouts/layout-base"
33
*/ /** */
44

5-
import { View, CustomLayoutView, Property, Length } from "../core/view";
5+
import { View, CustomLayoutView, Property, Length } from "../../core/view";
66

7-
export * from "../core/view";
7+
export * from "../../core/view";
88

99
/**
1010
* Base class for all views that supports children positioning.

0 commit comments

Comments
 (0)
0