( org: string, user: string, options?: ExecNpmOptions, )
| 440 | } |
| 441 | |
| 442 | export async function orgRemoveUser( |
| 443 | org: string, |
| 444 | user: string, |
| 445 | options?: ExecNpmOptions, |
| 446 | ): Promise<NpmExecResult> { |
| 447 | validateOrgName(org) |
| 448 | validateUsername(user) |
| 449 | return execNpm(['org', 'rm', org, user], options) |
| 450 | } |
| 451 | |
| 452 | export async function teamCreate( |
| 453 | scopeTeam: string, |
no test coverage detected