From 79368298625ca2232c1a953c712c770e896aa547 Mon Sep 17 00:00:00 2001 From: mhartington Date: Mon, 1 Feb 2016 11:45:11 -0500 Subject: [PATCH] docs(app): update property description removed @params and added @property tags --- ionic/decorators/app.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/ionic/decorators/app.ts b/ionic/decorators/app.ts index 55db1dd129..840f3d4db6 100644 --- a/ionic/decorators/app.ts +++ b/ionic/decorators/app.ts @@ -17,7 +17,8 @@ const _reflect: any=Reflect; * import {App} from 'ionic/ionic'; * * @App({ -* templateUrl: 'app/app.html' +* templateUrl: 'app/app.html', +* providers: [DataService] * }) * * export class MyApp{ @@ -25,9 +26,10 @@ const _reflect: any=Reflect; * } * ``` * -* @param {Object} [config] - the app's [../Config](Config) object -* @param {String} [template] - the template to use for the app root -* @param {String} [templateUrl] - a relative URL pointing to the template to use for the app root +* @property {Object} [config] - the app's {@link docs/v2/api/config/Config/ Config} object +* @property {Array} [providers] - any providers for your app +* @property {String} [template] - the template to use for the app root +* @property {String} [templateUrl] - a relative URL pointing to the template to use for the app root * */ export function App(args: any={}) {