mirror of
https://github.com/cheveguerra/whatsapp-web.js.git
synced 2026-04-18 11:39:14 +00:00
13 lines
182 B
JavaScript
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; |