(keys?: (keyof SessionDefaults)[])
| 85 | } |
| 86 | |
| 87 | clear(keys?: (keyof SessionDefaults)[]): void { |
| 88 | if (keys == null) { |
| 89 | this.clearForProfile(this.activeProfile); |
| 90 | return; |
| 91 | } |
| 92 | |
| 93 | this.clearForProfile(this.activeProfile, keys); |
| 94 | } |
| 95 | |
| 96 | clearAll(): void { |
| 97 | this.clearAllInternal(); |
nothing calls this directly
no test coverage detected