( scopeTeam: string, user: string, options?: ExecNpmOptions, )
| 466 | } |
| 467 | |
| 468 | export async function teamAddUser( |
| 469 | scopeTeam: string, |
| 470 | user: string, |
| 471 | options?: ExecNpmOptions, |
| 472 | ): Promise<NpmExecResult> { |
| 473 | validateScopeTeam(scopeTeam) |
| 474 | validateUsername(user) |
| 475 | return execNpm(['team', 'add', scopeTeam, user], options) |
| 476 | } |
| 477 | |
| 478 | export async function teamRemoveUser( |
| 479 | scopeTeam: string, |
no test coverage detected