mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Use relative imports in tns-core-modules.
Use tns-core-modules/* imports in outside code (apps, tests, etc)
This commit is contained in:
committed by
Hristo Deshev
parent
dfb4e031a6
commit
629eb6e683
@@ -1,8 +1,8 @@
|
||||
/**
|
||||
* Contains the VirtualArray class, which is an advanced array like class that helps loading items on demand.
|
||||
*/
|
||||
import * as observable from "data/observable";
|
||||
import * as observableArray from "data/observable-array";
|
||||
import * as observable from "../observable";
|
||||
import * as observableArray from "../observable-array";
|
||||
|
||||
/**
|
||||
* Provides event args for "changed" event.
|
||||
|
||||
Reference in New Issue
Block a user