Skip to content

Commit

Permalink
refactor: Fix package export name
Browse files Browse the repository at this point in the history
  • Loading branch information
Josmithr committed May 23, 2024
1 parent 3b99b09 commit 229c311
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion apps/api-extractor/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export { CompilerState, ICompilerStateCreateOptions } from './api/CompilerState'
export { Extractor, IExtractorInvokeOptions, ExtractorResult } from './api/Extractor';

export {
IExtractorConfigApiReport as IApiReportConfig,
IExtractorConfigApiReport,
IExtractorConfigPrepareOptions,
IExtractorConfigLoadForFolderOptions,
ExtractorConfig
Expand Down
14 changes: 7 additions & 7 deletions common/reviews/api/api-extractor.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class ExtractorConfig {
readonly projectFolder: string;
readonly projectFolderUrl: string | undefined;
readonly publicTrimmedFilePath: string;
readonly reportConfigs: readonly IApiReportConfig[];
readonly reportConfigs: readonly IExtractorConfigApiReport[];
// @deprecated
get reportFilePath(): string;
readonly reportFolder: string;
Expand Down Expand Up @@ -172,12 +172,6 @@ export class ExtractorResult {
readonly warningCount: number;
}

// @public
export interface IApiReportConfig {
fileName: string;
variant: ApiReportVariant;
}

// @public
export interface ICompilerStateCreateOptions {
additionalEntryPoints?: string[];
Expand Down Expand Up @@ -255,6 +249,12 @@ export interface IConfigTsdocMetadata {
tsdocMetadataFilePath?: string;
}

// @public
export interface IExtractorConfigApiReport {
fileName: string;
variant: ApiReportVariant;
}

// @public
export interface IExtractorConfigLoadForFolderOptions {
packageJsonLookup?: PackageJsonLookup;
Expand Down

0 comments on commit 229c311

Please sign in to comment.