Files
2016-01-04 17:57:57 -06:00

13 lines
284 B
TypeScript

import {Page} from 'ionic/ionic';
import {forwardRef} from 'angular2/core';
import {AndroidAttribute} from '../../helpers';
@Page({
templateUrl: 'cards/image/template.html',
directives: [forwardRef(() => AndroidAttribute)]
})
export class ImagePage {
constructor() {
}
}