(scopeTeam: string)
| 539 | } |
| 540 | |
| 541 | export async function teamListUsers(scopeTeam: string): Promise<NpmExecResult> { |
| 542 | validateScopeTeam(scopeTeam) |
| 543 | return execNpm(['team', 'ls', scopeTeam, '--json'], { silent: true }) |
| 544 | } |
| 545 | |
| 546 | export async function accessListCollaborators(pkg: string): Promise<NpmExecResult> { |
| 547 | validatePackageName(pkg) |
no test coverage detected