File tree Expand file tree Collapse file tree 1 file changed +22
-4
lines changed
Expand file tree Collapse file tree 1 file changed +22
-4
lines changed Original file line number Diff line number Diff 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
149170export interface ITryFindRushJsonLocationOptions {
150171 showVerbose? : boolean ;
@@ -230,12 +251,9 @@ export type PackageManagerName = 'pnpm' | 'npm' | 'yarn';
230251
231252// @public
232253export 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 ;
You can’t perform that action at this time.
0 commit comments