in ng-cordova files correct the conventions for multiple authors

This commit is contained in:
Kapil Sachdeva
2015-11-03 18:16:01 -06:00
parent 3916f5caf1
commit c8bd043d9e
4 changed files with 5 additions and 8 deletions
+1 -2
View File
@@ -1,7 +1,6 @@
// Type definitions for ngCordova device motion plugin
// Project: https://github.com/driftyco/ng-cordova
// Definitions by: Michel Vidailhet <https://github.com/mvidailhet>
// Definitions by: Kapil Sachdeva <https://github.com/ksachdeva>
// Definitions by: Michel Vidailhet <https://github.com/mvidailhet>, Kapil Sachdeva <https://github.com/ksachdeva>
// Definitions: https://github.com/ksachdeva/DefinitelyTyped
/// <reference path="../angularjs/angular.d.ts" />
+1 -2
View File
@@ -1,7 +1,6 @@
// Type definitions for ngCordova device orientation plugin
// Project: https://github.com/driftyco/ng-cordova
// Definitions by: Michel Vidailhet <https://github.com/mvidailhet>
// Definitions by: Kapil Sachdeva <https://github.com/ksachdeva>
// Definitions by: Michel Vidailhet <https://github.com/mvidailhet>, Kapil Sachdeva <https://github.com/ksachdeva>
// Definitions: https://github.com/ksachdeva/DefinitelyTyped
/// <reference path="../angularjs/angular.d.ts" />
+1 -2
View File
@@ -1,7 +1,6 @@
// Type definitions for ngCordova dialogs plugin
// Project: https://github.com/driftyco/ng-cordova
// Definitions by: Michel Vidailhet <https://github.com/mvidailhet>
// Definitions by: Kapil Sachdeva <https://github.com/ksachdeva>
// Definitions by: Michel Vidailhet <https://github.com/mvidailhet>, Kapil Sachdeva <https://github.com/ksachdeva>
// Definitions: https://github.com/ksachdeva/DefinitelyTyped
/// <reference path="../angularjs/angular.d.ts" />
+2 -2
View File
@@ -20,8 +20,8 @@ declare module ngCordova {
export interface IEmailComposerService {
isAvailable(): ng.IPromise<boolean>;
open(properties: IEmailComposerOptions);
addAlias(app: string, schema: string);
open(properties: IEmailComposerOptions) : ng.IPromise<any>;
addAlias(app: string, schema: string) : void;
}