closes #483 A major refactoring of the intro chapters includes text revision and the addition of "module" as an 8th "basic building block". Incorporates John Papa feedback.
8 lines
200 B
TypeScript
8 lines
200 B
TypeScript
import {Injectable} from 'angular2/core';
|
|
|
|
@Injectable()
|
|
export class Logger {
|
|
log(msg: any) { console.log(msg); }
|
|
error(msg: any) { console.error(msg); }
|
|
warn(msg: any) { console.warn(msg); }
|
|
} |