mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-14 10:33:30 +01:00
chore: use descriptive type parameter names (#9937)
* chore: use descriptive type parameter names * refactor: requested changes --------- Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import type { DeclarationReflection } from 'typedoc';
|
||||
import type { Config, Item } from '../interfaces/index.js';
|
||||
|
||||
export class DocumentedItem<T = DeclarationReflection | Item> {
|
||||
export class DocumentedItem<Data = DeclarationReflection | Item> {
|
||||
public constructor(
|
||||
public readonly data: T,
|
||||
public readonly data: Data,
|
||||
public readonly config: Config,
|
||||
) {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user