Guest User

Untitled

a guest
Jul 15th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. import * as angular from "angular";
  2.  
  3. import { CustomDataService } from "./services/custom-data.service";
  4.  
  5. import { CustomDataComponent } from "./components/custom-data.component";
  6.  
  7. angular.module("adb", [])
  8.  
  9. .run(["$q", ($q) => window["Promise"] = $q])
  10.  
  11. .service("customData", CustomDataService)
  12.  
  13. .component("customData", new CustomDataComponent());
Add Comment
Please, Sign In to add comment