mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 09:03:29 +01:00
feat: mainlib docs on new website (#9930)
* fix(ExceptText): don't display import("d..-types/v10"). in return type
* Squashed 'packages/api-extractor-model/' content from commit 39ecb196c
git-subtree-dir: packages/api-extractor-model
git-subtree-split: 39ecb196ca210bdf84ba6c9cadb1bb93571849d7
* Squashed 'packages/api-extractor/' content from commit 341ad6c51
git-subtree-dir: packages/api-extractor
git-subtree-split: 341ad6c51b01656d4f73b74ad4bdb3095f9262c4
* feat(api-extractor): add api-extractor and -model
* fix: package.json docs script
* fix(SourcLink): use <> instead of function syntax
* fix: make packages private
* fix: rest params showing in docs, added labels
* fix: missed two files
* feat: merge docs.json from docgen and docs.api.json
* fix: cpy-cli & pnpm-lock
* fix: increase icon size
* fix: icon size again
* feat: run both docs on mainlib
* chore: website fixes
* fix: more website fixes
* fix: tests and dev database script
* chore: comment out old docs
* fix: increase max fetch cache
* fix: env should always be a string
* fix: try to reapply patches
* fix: remove prepare for docgen
* fix: temporary cosmetic fixes
* fix: horizontal scroll
* feat: generate index for new docs
---------
Co-authored-by: Noel <buechler.noel@outlook.com>
This commit is contained in:
@@ -25,7 +25,7 @@ import {
|
||||
type IApiTypeParameterListMixinJson,
|
||||
ApiTypeParameterListMixin,
|
||||
} from '../mixins/ApiTypeParameterListMixin.js';
|
||||
import type { IExcerptTokenRange } from '../mixins/Excerpt.js';
|
||||
import type { IExcerptTokenRangeWithTypeParameters } from './ApiClass.js';
|
||||
import type { DeserializerContext } from './DeserializerContext.js';
|
||||
import { HeritageType } from './HeritageType.js';
|
||||
|
||||
@@ -41,7 +41,7 @@ export interface IApiInterfaceOptions
|
||||
IApiReleaseTagMixinOptions,
|
||||
IApiDeclaredItemOptions,
|
||||
IApiExportedMixinOptions {
|
||||
extendsTokenRanges: IExcerptTokenRange[];
|
||||
extendsTokenRanges: IExcerptTokenRangeWithTypeParameters[];
|
||||
}
|
||||
|
||||
export interface IApiInterfaceJson
|
||||
@@ -51,7 +51,7 @@ export interface IApiInterfaceJson
|
||||
IApiReleaseTagMixinJson,
|
||||
IApiDeclaredItemJson,
|
||||
IApiExportedMixinJson {
|
||||
extendsTokenRanges: IExcerptTokenRange[];
|
||||
extendsTokenRanges: IExcerptTokenRangeWithTypeParameters[];
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -79,7 +79,7 @@ export class ApiInterface extends ApiItemContainerMixin(
|
||||
super(options);
|
||||
|
||||
for (const extendsTokenRange of options.extendsTokenRanges) {
|
||||
this._extendsTypes.push(new HeritageType(this.buildExcerpt(extendsTokenRange)));
|
||||
this._extendsTypes.push(new HeritageType(this.buildExcerpt(extendsTokenRange), extendsTokenRange.typeParameters));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -127,7 +127,10 @@ export class ApiInterface extends ApiItemContainerMixin(
|
||||
public override serializeInto(jsonObject: Partial<IApiInterfaceJson>): void {
|
||||
super.serializeInto(jsonObject);
|
||||
|
||||
jsonObject.extendsTokenRanges = this.extendsTypes.map((x) => x.excerpt.tokenRange);
|
||||
jsonObject.extendsTokenRanges = this.extendsTypes.map((x) => ({
|
||||
...x.excerpt.tokenRange,
|
||||
typeParameters: x.typeParameters,
|
||||
}));
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user