docs(nfc): fix return type (#961)

Doc fix for stringToBytes function
This commit is contained in:
Vlado Velichkovski 2017-01-16 04:48:23 +01:00 committed by Ibby Hadeed
parent c44071d117
commit a88cf7034b

View File

@ -162,7 +162,7 @@ export class NFC {
/** /**
* Convert string to bytes * Convert string to bytes
* @param str {string} * @param str {string}
* @returns {string} * @returns {number[]}
*/ */
@Cordova({ sync: true }) @Cordova({ sync: true })
static stringToBytes(str: string): number[] {return; }; static stringToBytes(str: string): number[] {return; };