resolve merge conflicts

This commit is contained in:
Alex Muramoto
2016-11-29 16:42:30 -06:00
4 changed files with 16 additions and 19 deletions
+3 -3
View File
@@ -93,14 +93,14 @@ export class Globalization {
/**
* Returns a number formatted as a string according to the client's user preferences.
* @param options
* @returns {Promise<{value: string}>}
* @param number {Number} The number to convert
* @param options {Object} Object with property `type` that can be set to: decimal, percent, or currency.
*/
@Cordova({
successIndex: 1,
errorIndex: 2
})
static numberToString(options: { type: string }): Promise<{ value: string }> { return; }
static numberToString(number: number, options: { type: string }): Promise<{ value: string }> { return; }
/**
*