I've been diving into the world of Angular2 with TypeScript and stumbled upon a piece of code that has me scratching my head:
export var userServiceInjectables: Array<any> = [
bind(UserService).toClass(UserService)
];
Can someone break down for me what exactly this code is doing?