Update
In Angular2 RC.4 and later provideare deprecated. Use the object literal syntax instead:
bootstrap(AppComponent, [{provide: SomeService, useClass: SomeOtherService}])
@Component({
providers: [{provide: SomeService, useClass: SomeOtherService}],
...
})
original
You need to import it. It is exported angular2/core:
import {PLATFORM_DIRECTIVES, provide} from 'angular2/core';
source
share