]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-main/angular/peertube-template.directive.ts
Migrate to $localize
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-main / angular / peertube-template.directive.ts
1 import { Directive, Input, TemplateRef } from '@angular/core'
2
3 @Directive({
4 selector: '[ptTemplate]'
5 })
6 export class PeerTubeTemplateDirective <T extends string> {
7 @Input('ptTemplate') name: T
8
9 constructor (public template: TemplateRef<any>) {
10 // empty
11 }
12 }