( scopeTeam: string, options?: ExecNpmOptions, )
| 450 | } |
| 451 | |
| 452 | export async function teamCreate( |
| 453 | scopeTeam: string, |
| 454 | options?: ExecNpmOptions, |
| 455 | ): Promise<NpmExecResult> { |
| 456 | validateScopeTeam(scopeTeam) |
| 457 | return execNpm(['team', 'create', scopeTeam], options) |
| 458 | } |
| 459 | |
| 460 | export async function teamDestroy( |
| 461 | scopeTeam: string, |
no test coverage detected