fix(linter): remove unneeded vars and add jsdoc

This commit is contained in:
LuanRT
2022-06-15 23:15:59 -03:00
parent 28d51fcc4f
commit d6bbe8f183
4 changed files with 6 additions and 9 deletions

View File

@@ -2,7 +2,6 @@
const NToken = require('../../../deciphers/NToken');
const Signature = require('../../../deciphers/Signature');
const QueryString = require('querystring');
class Format {
constructor(data) {

View File

@@ -1,10 +1,12 @@
const Parser = require('..');
'use strict';
//const Parser = require('..');
// TODO: implement all renderers related to this
class RichSection {
type = 'RichSection';
constructor(data) {
constructor(/* data */) {
// this.contents = Parser.parse(data.content);
}
}