updated location and location tests

This commit is contained in:
Stanimir Karoserov
2014-05-14 19:30:10 +03:00
parent 0242773cae
commit e8d3669d98
7 changed files with 163 additions and 16 deletions

View File

@@ -1,8 +1,11 @@
import types = require("location/location_types");
import common = require("location/location_common");
import merger = require("utils/module_merge");
// merge the exports of the types module with the exports of this file
declare var exports;
require("utils/module_merge").merge(types, exports);
merger.merge(types, exports);
merger.merge(common, exports);
export class LocationManager {