Skip to content

Commit

Permalink
update apiextractor report prior to the release of 10.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cspotcode committed Mar 1, 2022
1 parent 89bde51 commit 4e1af52
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion api-extractor/ts-node.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ export namespace NodeLoaderHooksAPI2 {
parentURL: string;
}, defaultResolve: ResolveHook) => Promise<{
url: string;
format?: NodeLoaderHooksFormat;
}>;
}

Expand Down Expand Up @@ -278,7 +279,7 @@ export interface TSCommon {
// (undocumented)
resolveModuleNameFromCache: typeof _ts.resolveModuleNameFromCache;
// (undocumented)
resolveTypeReferenceDirective: typeof _ts.resolveTypeReferenceDirective;
resolveTypeReferenceDirective(typeReferenceDirectiveName: string, containingFile: string | undefined, options: _ts.CompilerOptions, host: _ts.ModuleResolutionHost, redirectedReference?: _ts.ResolvedProjectReference, cache?: _ts.TypeReferenceDirectiveResolutionCache, resolutionMode?: _ts.SourceFile['impliedNodeFormat']): _ts.ResolvedTypeReferenceDirectiveWithFailedLookupLocations;
// (undocumented)
ScriptSnapshot: typeof _ts.ScriptSnapshot;
// (undocumented)
Expand All @@ -291,6 +292,33 @@ export interface TSCommon {
version: typeof _ts.version;
}

// @public (undocumented)
export namespace TSCommon {
// (undocumented)
export type CompilerOptions = _ts.CompilerOptions;
// (undocumented)
export type FileReference = _ts.FileReference;
// (undocumented)
export interface LanguageServiceHost extends _ts.LanguageServiceHost {
// (undocumented)
resolveTypeReferenceDirectives?(typeDirectiveNames: string[] | _ts.FileReference[], containingFile: string, redirectedReference: _ts.ResolvedProjectReference | undefined, options: _ts.CompilerOptions, containingFileMode?: _ts.SourceFile['impliedNodeFormat'] | undefined): (_ts.ResolvedTypeReferenceDirective | undefined)[];
}
// (undocumented)
export type ModuleResolutionHost = _ts.ModuleResolutionHost;
// (undocumented)
export type ParsedCommandLine = _ts.ParsedCommandLine;
// (undocumented)
export type ResolvedModule = _ts.ResolvedModule;
// (undocumented)
export type ResolvedModuleWithFailedLookupLocations = _ts.ResolvedModuleWithFailedLookupLocations;
// (undocumented)
export type ResolvedProjectReference = _ts.ResolvedProjectReference;
// (undocumented)
export type ResolvedTypeReferenceDirective = _ts.ResolvedTypeReferenceDirective;
// (undocumented)
export type SourceFile = _ts.SourceFile;
}

// @public
export interface TsConfigOptions extends Omit<RegisterOptions, 'transformers' | 'readFile' | 'fileExists' | 'skipProject' | 'project' | 'dir' | 'cwd' | 'projectSearchDir' | 'optionBasePaths' | 'tsTrace'> {
}
Expand Down

0 comments on commit 4e1af52

Please sign in to comment.