( scopeTeam: string, user: string, options?: ExecNpmOptions, )
| 476 | } |
| 477 | |
| 478 | export async function teamRemoveUser( |
| 479 | scopeTeam: string, |
| 480 | user: string, |
| 481 | options?: ExecNpmOptions, |
| 482 | ): Promise<NpmExecResult> { |
| 483 | validateScopeTeam(scopeTeam) |
| 484 | validateUsername(user) |
| 485 | return execNpm(['team', 'rm', scopeTeam, user], options) |
| 486 | } |
| 487 | |
| 488 | export async function accessGrant( |
| 489 | permission: 'read-only' | 'read-write', |
no test coverage detected