So, I am learning Angular2, and I am using TypeScript. So, I do know that SystemJS is used to get the import
functionality like this:
import { bootstrap } from "angular2/platform/browser";
This makes sense, but, I don't understand where exactly angular2/platform/browser
is. I am pretty sure it is not a path, but some other thing that is used to simulate paths/namespaces. Also, looking at bootstrap
here, is it a class? Or is it just a function. And is it possible for other stuff to be imported?
Any exceptional answers will receive a bounty from me.