(alias: string)
| 90 | } |
| 91 | |
| 92 | removeProjectAlias(alias: string): boolean { |
| 93 | this.unset(["projects", alias]); |
| 94 | return this.save(); |
| 95 | } |
| 96 | |
| 97 | get hasProjects(): boolean { |
| 98 | return Object.keys(this.data.projects).length > 0; |
no test coverage detected