UNPKG

990 BJavaScriptView Raw
1/**
2 * @license
3 * Copyright Google Inc. All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8import { Injectable } from './di';
9import { print, warn } from './facade/lang';
10export var Console = (function () {
11 function Console() {
12 }
13 /**
14 * @param {?} message
15 * @return {?}
16 */
17 Console.prototype.log = function (message) { print(message); };
18 /**
19 * @param {?} message
20 * @return {?}
21 */
22 Console.prototype.warn = function (message) { warn(message); };
23 Console.decorators = [
24 { type: Injectable },
25 ];
26 /** @nocollapse */
27 Console.ctorParameters = function () { return []; };
28 return Console;
29}());
30function Console_tsickle_Closure_declarations() {
31 /** @type {?} */
32 Console.decorators;
33 /**
34 * @nocollapse
35 * @type {?}
36 */
37 Console.ctorParameters;
38}
39//# sourceMappingURL=console.js.map
\No newline at end of file