import { Method, VK } from 'vksnake'
const vk = new VK({
token: ''
})
async function get() {
console.log(await new Method().use('messages.send', { params... })
}
get()
import { VK } from 'vk-io'
const vk = new VK({
token: ''
})
async function get() {
console.log(await vk.api.messages.send({ params... }))
}
get()