From bae724a0d22dfe931cafe2dd1a5e727903ce87c6 Mon Sep 17 00:00:00 2001 From: Hubtwork Date: Thu, 15 Apr 2021 15:46:23 +0900 Subject: [PATCH] feat/master: README fix ( dependency info added ) --- README.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 22afade..2979b63 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ An easy-to-use typescript wrapper for [Naver Cloud Platform API](https://api.ncl ## Table of Contents +- [Dependency](#dependency) - [Installation](#installation) - [Usage](#usage) - [Types](#types) @@ -18,6 +19,13 @@ An easy-to-use typescript wrapper for [Naver Cloud Platform API](https://api.ncl +## Dependency + +- axios +- crypto + + + ## Installation with npm @@ -96,11 +104,11 @@ type NCPAuthKeyType = { ~~~typescript type SendSMSParamType = { // `to` is recipient's phone number - to: '01011112345' + to: string // `content` is text content what you want to send - content: 'say hi for users' + content: string // `countryCode` is recipient's country code but - countryCode?: '82' + countryCode?: string } type SendSMSReturnType = {