W3cubDocs

/Angular

TypeDecorator

interface

An interface implemented by all Angular type decorators, which allows them to be used as decorators as well as Angular syntax.

See more...

interface TypeDecorator {
  <T extends Type<any>>(type: T): T
}

Description

@ng.Component({...})
class MyClass {...}

Methods

Invoke as decorator.

<T extends Type<any>>(type: T): T

Parameters
type T
Returns

T

(target: Object, propertyKey?: string | symbol, parameterIndex?: number): void

Parameters
target Object
propertyKey string | symbol

Optional. Default is undefined.

parameterIndex number

Optional. Default is undefined.

Returns

void

(target: unknown, context: unknown): void

Parameters
target unknown
context unknown
Returns

void

© 2010–2023 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://angular.io/api/core/TypeDecorator