mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
20 lines
411 B
TypeScript
20 lines
411 B
TypeScript
|
///<reference path="../../../browser.d.ts"/>
|
||
|
|
||
|
import {Component, Input, OnInit} from 'angular2/core';
|
||
|
import {Directory} from "../../../../common/entities/Directory";
|
||
|
|
||
|
@Component({
|
||
|
selector: 'gallery-directory',
|
||
|
templateUrl: 'app/gallery/directory/directory.gallery.component.html'
|
||
|
})
|
||
|
export class GalleryDirectoryComponent{
|
||
|
@Input() directory: Directory;
|
||
|
|
||
|
constructor() {
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
|