Files
whatsapp-web.js/src/structures/PrivateChat.js
2019-02-20 02:42:19 -04:00

13 lines
182 B
JavaScript

'use strict';
const Chat = require('./Chat');
/**
* Represents a Private Chat on WhatsApp
* @extends {Chat}
*/
class PrivateChat extends Chat {
}
module.exports = PrivateChat;