From a88cf7034bd2d3daa195e86dd4270f6c0f15f545 Mon Sep 17 00:00:00 2001 From: Vlado Velichkovski Date: Mon, 16 Jan 2017 04:48:23 +0100 Subject: [PATCH] docs(nfc): fix return type (#961) Doc fix for stringToBytes function --- src/plugins/nfc.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/nfc.ts b/src/plugins/nfc.ts index 8f9035e6e..9629d8a17 100644 --- a/src/plugins/nfc.ts +++ b/src/plugins/nfc.ts @@ -162,7 +162,7 @@ export class NFC { /** * Convert string to bytes * @param str {string} - * @returns {string} + * @returns {number[]} */ @Cordova({ sync: true }) static stringToBytes(str: string): number[] {return; };