( scopeTeam: string, pkg: string, options?: ExecNpmOptions, )
| 497 | } |
| 498 | |
| 499 | export async function accessRevoke( |
| 500 | scopeTeam: string, |
| 501 | pkg: string, |
| 502 | options?: ExecNpmOptions, |
| 503 | ): Promise<NpmExecResult> { |
| 504 | validateScopeTeam(scopeTeam) |
| 505 | validatePackageName(pkg) |
| 506 | return execNpm(['access', 'revoke', scopeTeam, pkg], options) |
| 507 | } |
| 508 | |
| 509 | export async function ownerAdd( |
| 510 | user: string, |
no test coverage detected