Skip to content

Commit 0a9e565

Browse files
committed
updated api doc
1 parent 8855eba commit 0a9e565

File tree

1 file changed

+22
-4
lines changed

1 file changed

+22
-4
lines changed

common/reviews/api/rush-lib.api.md

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,27 @@ export class IndividualVersionPolicy extends VersionPolicy {
145145
validate(versionString: string, packageName: string): void;
146146
}
147147

148+
// @public
149+
export interface IPnpmOptionsJson {
150+
// (undocumented)
151+
pnpmStore?: IPnpmStoreOptions;
152+
// (undocumented)
153+
resolutionStrategy?: ResolutionStrategy;
154+
// (undocumented)
155+
strictPeerDependencies?: boolean;
156+
}
157+
158+
// @public
159+
export interface IPnpmOptionsRootPaths {
160+
// (undocumented)
161+
commonTempFolder: string;
162+
// (undocumented)
163+
repoRoot: string;
164+
}
165+
166+
// @public
167+
export type IPnpmStoreOptions = 'local' | 'global';
168+
148169
// @public
149170
export interface ITryFindRushJsonLocationOptions {
150171
showVerbose?: boolean;
@@ -230,12 +251,9 @@ export type PackageManagerName = 'pnpm' | 'npm' | 'yarn';
230251

231252
// @public
232253
export class PnpmOptionsConfiguration {
233-
// Warning: (ae-forgotten-export) The symbol "IPnpmOptionsJson" needs to be exported by the entry point index.d.ts
234-
//
235254
// @internal
236255
constructor(json: IPnpmOptionsJson, rootPaths: IPnpmOptionsRootPaths);
237-
// Warning: (ae-forgotten-export) The symbol "StoreOptions" needs to be exported by the entry point index.d.ts
238-
readonly pnpmStore: StoreOptions;
256+
readonly pnpmStore: IPnpmStoreOptions;
239257
readonly pnpmStorePath: string;
240258
readonly resolutionStrategy: ResolutionStrategy;
241259
readonly strictPeerDependencies: boolean;

0 commit comments

Comments
 (0)