2015-11-06 07:26:24 -05:00
@cheatsheetSection
Class decorators
2016-08-08 20:18:50 -04:00
@cheatsheetIndex 5
2015-11-05 10:04:55 -05:00
@description
2016-08-08 20:25:42 -04:00
{@target ts}`import { Directive, ... } from '@angular/core';`{@endtarget}
2015-12-12 22:17:26 -05:00
{@target js}Available from the `ng.core` namespace{@endtarget}
2015-11-05 10:04:55 -05:00
@cheatsheetItem
2015-12-12 22:17:26 -05:00
syntax(ts):
2015-11-05 10:04:55 -05:00
`@Component({...})
class MyComponent() {}`|`@Component({...})`
2015-12-12 22:17:26 -05:00
syntax(js):
`var MyComponent = ng.core.Component({...}).Class({...})` |`ng.core.Component({...})`
2015-12-09 07:33:42 -05:00
description:
2015-11-05 10:04:55 -05:00
Declares that a class is a component and provides metadata about the component.
2016-04-21 09:16:51 -04:00
@cheatsheetItem
syntax(ts):
`@Directive({...})
class MyDirective() {}`|`@Directive({...})`
syntax(js):
`var MyDirective = ng.core.Directive({...}).Class({...})` |`ng.core.Directive({...})`
description:
Declares that a class is a directive and provides metadata about the directive.
2015-11-05 10:04:55 -05:00
@cheatsheetItem
2015-12-12 22:17:26 -05:00
syntax(ts):
2015-11-05 10:04:55 -05:00
`@Pipe({...})
class MyPipe() {}`|`@Pipe({...})`
2015-12-12 22:17:26 -05:00
syntax(js):
`var MyPipe = ng.core.Pipe({...}).Class({...})` |`ng.core.Pipe({...})`
2015-12-09 07:33:42 -05:00
description:
2015-11-05 10:04:55 -05:00
Declares that a class is a pipe and provides metadata about the pipe.
@cheatsheetItem
2015-12-12 22:17:26 -05:00
syntax(ts):
2015-12-09 13:22:40 -05:00
`@Injectable()
class MyService() {}`|`@Injectable()`
2015-12-12 22:17:26 -05:00
syntax(js):
2016-09-01 15:06:42 -04:00
`var OtherService = ng.core.Class(
{constructor: function() { }});
var MyService = ng.core.Class(
{constructor: [OtherService, function(otherService) { }]});`|`var MyService = ng.core.Class({constructor: [OtherService, function(otherService) { }]});`
2015-12-09 07:33:42 -05:00
description:
2016-08-29 21:13:10 -04:00
{@target ts}Declares that a class has dependencies that should be injected into the constructor when the dependency injector is creating an instance of this class.
2015-12-12 22:17:26 -05:00
{@endtarget}
{@target js}
2016-09-01 15:06:42 -04:00
Declares a service to inject into a class by providing an array with the services, with the final item being the function to receive the injected services.
2015-12-12 22:17:26 -05:00
{@endtarget}