mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00
14 lines
179 B
TypeScript
14 lines
179 B
TypeScript
import { Directive } from '@angular/core';
|
|
|
|
/**
|
|
* @name Thumbnail
|
|
* @module ionic
|
|
* @description
|
|
*/
|
|
@Directive({
|
|
selector: 'ion-thumbnail'
|
|
})
|
|
export class Thumbnail {
|
|
|
|
}
|