Skip to content

Commit e28cbec

Browse files
committed
fix missing tag declaration in api-extractor config; update api-extractor report
1 parent 30eef20 commit e28cbec

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

api-extractor/ts-node.api.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ export interface TSCommon {
294294
// (undocumented)
295295
resolveModuleNameFromCache: typeof _ts.resolveModuleNameFromCache;
296296
// (undocumented)
297-
resolveTypeReferenceDirective(typeReferenceDirectiveName: string, containingFile: string | undefined, options: _ts.CompilerOptions, host: _ts.ModuleResolutionHost, redirectedReference?: _ts.ResolvedProjectReference, cache?: _ts.TypeReferenceDirectiveResolutionCache, resolutionMode?: _ts.SourceFile['impliedNodeFormat']): _ts.ResolvedTypeReferenceDirectiveWithFailedLookupLocations;
297+
resolveTypeReferenceDirective: typeof _ts.resolveTypeReferenceDirective;
298298
// (undocumented)
299299
ScriptSnapshot: typeof _ts.ScriptSnapshot;
300300
// (undocumented)
@@ -315,8 +315,13 @@ export namespace TSCommon {
315315
export type FileReference = _ts.FileReference;
316316
// (undocumented)
317317
export interface LanguageServiceHost extends _ts.LanguageServiceHost {
318+
}
319+
// (undocumented)
320+
export namespace ModuleKind {
321+
// (undocumented)
322+
export type CommonJS = _ts.ModuleKind.CommonJS;
318323
// (undocumented)
319-
resolveTypeReferenceDirectives?(typeDirectiveNames: string[] | _ts.FileReference[], containingFile: string, redirectedReference: _ts.ResolvedProjectReference | undefined, options: _ts.CompilerOptions, containingFileMode?: _ts.SourceFile['impliedNodeFormat'] | undefined): (_ts.ResolvedTypeReferenceDirective | undefined)[];
324+
export type ESNext = _ts.ModuleKind.ESNext;
320325
}
321326
// (undocumented)
322327
export type ModuleKindEnum = typeof _ts.ModuleKind & {

tsdoc.json

+5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@
2121
"tagName": "@allOf",
2222
"syntaxKind": "block",
2323
"allowMultiple": false
24+
},
25+
{
26+
"tagName": "@category",
27+
"syntaxKind": "inline",
28+
"allowMultiple": false
2429
}
2530
]
2631
}

0 commit comments

Comments
 (0)