mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-16 02:10:38 +08:00
Fix single line doc comments
This commit is contained in:
@@ -1,18 +1,12 @@
|
||||
import Grammar from "./Grammar"
|
||||
import ISerializer from "./ISerializer"
|
||||
|
||||
/**
|
||||
* @typedef {import("../entity/IEntity").default} IEntity
|
||||
*/
|
||||
/** @typedef {import("../entity/IEntity").default} IEntity */
|
||||
|
||||
/**
|
||||
* @template {IEntity} T
|
||||
*/
|
||||
/** @template {IEntity} T */
|
||||
export default class GeneralSerializer extends ISerializer {
|
||||
|
||||
/**
|
||||
* @param {new () => T} entityType
|
||||
*/
|
||||
/** @param {new () => T} entityType */
|
||||
constructor(wrap, entityType, prefix, separator, trailingSeparator, attributeValueConjunctionSign, attributeKeyPrinter) {
|
||||
wrap = wrap ?? (v => `(${v})`)
|
||||
super(entityType, prefix, separator, trailingSeparator, attributeValueConjunctionSign, attributeKeyPrinter)
|
||||
|
||||
Reference in New Issue
Block a user