71 lines
1.0 KiB
Plaintext
71 lines
1.0 KiB
Plaintext
|
|
p.location-badge.
|
|
exported from <a href="/angular2/pipes.html">angular2/pipes</a>
|
|
defined in <a href="https://github.com/angular/angular/tree/master/modules/angular2/src/change_detection/pipes/pipe.js#L32">angular2/src/change_detection/pipes/pipe.js (line 32)</a>
|
|
|
|
:markdown
|
|
An interface for extending the list of pipes known to Angular.
|
|
|
|
If you are writing a custom <a href='Pipe-class.html'><code>Pipe</code></a>, you must extend this interface.
|
|
|
|
#Example
|
|
|
|
```
|
|
class DoublePipe extends Pipe {
|
|
supports(obj) {
|
|
return true;
|
|
}
|
|
|
|
transform(value) {
|
|
return `${value}${value}`;
|
|
}
|
|
}
|
|
```
|
|
|
|
.l-main-section
|
|
h2 Members
|
|
.l-sub-section
|
|
h3 onDestroy
|
|
|
|
|
|
pre.prettyprint
|
|
code.
|
|
onDestroy()
|
|
|
|
:markdown
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.l-sub-section
|
|
h3 supports
|
|
|
|
|
|
pre.prettyprint
|
|
code.
|
|
supports(obj)
|
|
|
|
:markdown
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.l-sub-section
|
|
h3 transform
|
|
|
|
|
|
pre.prettyprint
|
|
code.
|
|
transform(value:any)
|
|
|
|
:markdown
|
|
|
|
|
|
|
|
|
|
|