2020-03-04 22:50:56 +08:00
|
|
|
const Page = require('../core/page');
|
2020-03-24 01:11:30 +08:00
|
|
|
const util = require('./util');
|
2020-03-04 22:50:56 +08:00
|
|
|
|
2020-05-08 04:55:40 +08:00
|
|
|
class Audio extends Page {
|
2020-03-04 22:50:56 +08:00
|
|
|
constructor() {
|
2021-09-23 03:22:47 +08:00
|
|
|
super();
|
2020-03-24 01:11:30 +08:00
|
|
|
}
|
|
|
|
|
2020-03-04 22:50:56 +08:00
|
|
|
async test() {
|
2021-08-26 03:31:54 +08:00
|
|
|
return util.joinAudio(this);
|
2020-03-24 01:11:30 +08:00
|
|
|
}
|
|
|
|
|
2020-05-08 04:55:40 +08:00
|
|
|
async microphone() {
|
2021-08-26 03:31:54 +08:00
|
|
|
return util.joinMicrophone(this);
|
2020-03-04 22:50:56 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = exports = Audio;
|