we usually use below statement to use authy library in node file using js ,mostly by require statement !
const authy = require('authy')('API KEY');
I've moved my code to nest eco system and now How should i do the same using typescript ,as i also want to pass API Key to it ? I've tried below code as well ,but still it's not working
import { authy } from 'authy'(API KEY)
suggest something !