( scopeTeam: string, options?: ExecNpmOptions, )
| 458 | } |
| 459 | |
| 460 | export async function teamDestroy( |
| 461 | scopeTeam: string, |
| 462 | options?: ExecNpmOptions, |
| 463 | ): Promise<NpmExecResult> { |
| 464 | validateScopeTeam(scopeTeam) |
| 465 | return execNpm(['team', 'destroy', scopeTeam], options) |
| 466 | } |
| 467 | |
| 468 | export async function teamAddUser( |
| 469 | scopeTeam: string, |
no test coverage detected