Skip to content

Commit

Permalink
fix missing tag declaration in api-extractor config; update api-extra…
Browse files Browse the repository at this point in the history
…ctor report
  • Loading branch information
cspotcode committed Jun 3, 2022
1 parent 30eef20 commit e28cbec
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
9 changes: 7 additions & 2 deletions api-extractor/ts-node.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ export interface TSCommon {
// (undocumented)
resolveModuleNameFromCache: typeof _ts.resolveModuleNameFromCache;
// (undocumented)
resolveTypeReferenceDirective(typeReferenceDirectiveName: string, containingFile: string | undefined, options: _ts.CompilerOptions, host: _ts.ModuleResolutionHost, redirectedReference?: _ts.ResolvedProjectReference, cache?: _ts.TypeReferenceDirectiveResolutionCache, resolutionMode?: _ts.SourceFile['impliedNodeFormat']): _ts.ResolvedTypeReferenceDirectiveWithFailedLookupLocations;
resolveTypeReferenceDirective: typeof _ts.resolveTypeReferenceDirective;
// (undocumented)
ScriptSnapshot: typeof _ts.ScriptSnapshot;
// (undocumented)
Expand All @@ -315,8 +315,13 @@ export namespace TSCommon {
export type FileReference = _ts.FileReference;
// (undocumented)
export interface LanguageServiceHost extends _ts.LanguageServiceHost {
}
// (undocumented)
export namespace ModuleKind {
// (undocumented)
export type CommonJS = _ts.ModuleKind.CommonJS;
// (undocumented)
resolveTypeReferenceDirectives?(typeDirectiveNames: string[] | _ts.FileReference[], containingFile: string, redirectedReference: _ts.ResolvedProjectReference | undefined, options: _ts.CompilerOptions, containingFileMode?: _ts.SourceFile['impliedNodeFormat'] | undefined): (_ts.ResolvedTypeReferenceDirective | undefined)[];
export type ESNext = _ts.ModuleKind.ESNext;
}
// (undocumented)
export type ModuleKindEnum = typeof _ts.ModuleKind & {
Expand Down
5 changes: 5 additions & 0 deletions tsdoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
"tagName": "@allOf",
"syntaxKind": "block",
"allowMultiple": false
},
{
"tagName": "@category",
"syntaxKind": "inline",
"allowMultiple": false
}
]
}

0 comments on commit e28cbec

Please sign in to comment.