Fix single line doc comments

This commit is contained in:
barsdeveloper
2022-09-24 22:41:46 +02:00
parent 9a4d323a87
commit 7e55d41ec1
40 changed files with 2649 additions and 3008 deletions

View File

@@ -1,18 +1,12 @@
import Utility from "../Utility"
import GeneralSerializer from "./GeneralSerializer"
/**
* @typedef {import("../entity/IEntity").default} IEntity
*/
/** @typedef {import("../entity/IEntity").default} IEntity */
/**
* @template {IEntity} T
*/
/** @template {IEntity} T */
export default class ToStringSerializer extends GeneralSerializer {
/**
* @param {new () => T} entityType
*/
/** @param {new () => T} entityType */
constructor(entityType) {
super(undefined, entityType)
}