refactor: fix type

This commit is contained in:
syuilo
2022-04-17 14:42:13 +09:00
parent a671f9102d
commit 31b216f667
7 changed files with 22 additions and 16 deletions

View File

@ -1,7 +1,7 @@
import { default as Xev } from 'xev';
import Xev from 'xev';
import Channel from '../channel.js';
const ev = new Xev.default();
const ev = new Xev();
export default class extends Channel {
public readonly chName = 'queueStats';

View File

@ -1,7 +1,7 @@
import { default as Xev } from 'xev';
import Xev from 'xev';
import Channel from '../channel.js';
const ev = new Xev.default();
const ev = new Xev();
export default class extends Channel {
public readonly chName = 'serverStats';