UNPKG

@warriorteam/zalo-personal

Version:

Unofficial Zalo Personal API for JavaScript - A powerful library for interacting with Zalo personal accounts with URL attachment support, auto-reply, product catalog, and business features

13 lines (9 loc) 324 B
'use strict'; var ZaloApiError = require('./ZaloApiError.cjs'); class ZaloApiLoginQRDeclined extends ZaloApiError.ZaloApiError { constructor(message = "Login QR request declined") { super(message); this.name = "ZaloApiLoginQRDeclined"; } } exports.ZaloApiLoginQRDeclined = ZaloApiLoginQRDeclined;