mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +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,6 +1,6 @@
|
||||
import * as observable from "data/observable";
|
||||
import * as observableArrayDef from "data/observable-array";
|
||||
import * as types from "utils/types";
|
||||
import * as observable from "../observable";
|
||||
import * as observableArrayDef from ".";
|
||||
import * as types from "../../utils/types";
|
||||
|
||||
export class ChangeType implements observableArrayDef.ChangeType {
|
||||
static Add = "add";
|
||||
@ -323,4 +323,4 @@ export class ObservableArray<T> extends observable.Observable implements observa
|
||||
reduceRight(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue?: T): T {
|
||||
return this._array.reduceRight(callbackfn, initialValue);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user