Skip to content

Commit

Permalink
fix(3dtouch): add missing property (#739)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasGassmann authored and ihadeed committed Oct 24, 2016
1 parent 693ba01 commit 757d096
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/plugins/3dtouch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ declare var window: any;
* ];
* ThreeDeeTouch.configureQuickActions(actions);
*
* ThreeDeeTouchForceTouch.onHomeIconPressed().subscribe(
* ThreeDeeTouch.onHomeIconPressed().subscribe(
* (payload) => {
* // returns an object that is the button you presed
* console.log('Pressed the ${payload.title} button')
Expand Down Expand Up @@ -95,6 +95,7 @@ export class ThreeDeeTouch {
* @param {string} title Title for your action
* @param {string} subtitle (optional) A short description for your action
* @param {string} iconType (optional) Choose between Prohibit, Contact, Home, MarkLocation, Favorite, Love, Cloud, Invitation, Confirmation, Mail, Message, Date, Time, CapturePhoto, CaptureVideo, Task, TaskCompleted, Alarm, Bookmark, Shuffle, Audio, Update
* @param {string} iconTemplate (optional) Can be used to provide your own icon
*/
@Cordova({
sync: true
Expand Down Expand Up @@ -140,6 +141,7 @@ export interface ThreeDeeTouchQuickAction {
title: string;
subtitle?: string;
iconType?: string;
iconTemplate?: string;
}

export interface ThreeDeeTouchForceTouch {
Expand Down

0 comments on commit 757d096

Please sign in to comment.