mirror of
https://github.com/cheveguerra/whatsapp-web.js.git
synced 2026-04-18 11:39:14 +00:00
13 lines
203 B
JavaScript
13 lines
203 B
JavaScript
'use strict';
|
|
|
|
const Contact = require('./Contact');
|
|
|
|
/**
|
|
* Represents a Private Contact on WhatsApp
|
|
* @extends {Contact}
|
|
*/
|
|
class PrivateContact extends Contact {
|
|
|
|
}
|
|
|
|
module.exports = PrivateContact; |