(org: string)
| 534 | } |
| 535 | |
| 536 | export async function teamListTeams(org: string): Promise<NpmExecResult> { |
| 537 | validateOrgName(org) |
| 538 | return execNpm(['team', 'ls', org, '--json'], { silent: true }) |
| 539 | } |
| 540 | |
| 541 | export async function teamListUsers(scopeTeam: string): Promise<NpmExecResult> { |
| 542 | validateScopeTeam(scopeTeam) |
no test coverage detected