mirror of
https://github.com/bpatrik/pigallery2.git
synced 2025-01-06 03:54:12 +02:00
17 lines
426 B
TypeScript
17 lines
426 B
TypeScript
///<reference path="../../../../../browser.d.ts"/>
|
|
|
|
import {Component, Input} from "@angular/core";
|
|
|
|
@Component({
|
|
selector: 'gallery-grid-photo-loading',
|
|
templateUrl: 'app/gallery/grid/photo/loading/loading.photo.grid.gallery.component.html',
|
|
styleUrls: ['app/gallery/grid/photo/loading/loading.photo.grid.gallery.component.css'],
|
|
})
|
|
export class GalleryPhotoLoadingComponent {
|
|
|
|
@Input() animate:boolean;
|
|
|
|
|
|
}
|
|
|