style: format code

This commit is contained in:
LuanRT
2022-07-21 03:51:28 -03:00
parent 4bf4639902
commit 60e6326402
269 changed files with 2082 additions and 992 deletions

View File

@@ -1,13 +1,14 @@
import Text from './misc/Text';
import { YTNode } from '../helpers';
class ProfileColumnStatsEntry extends YTNode {
static type = 'ProfileColumnStatsEntry';
constructor(data) {
super();
this.label = new Text(data.label);
this.value = new Text(data.value);
}
}
export default ProfileColumnStatsEntry;
export default ProfileColumnStatsEntry;