(id: string)
| 155 | } |
| 156 | |
| 157 | public async createSession(id: string): Promise<string> { |
| 158 | return await this.executeCommandEx(this.nodeExecutable, [await this.getLeetCodeBinaryPath(), "session", "-c", id]); |
| 159 | } |
| 160 | |
| 161 | public async deleteSession(id: string): Promise<string> { |
| 162 | return await this.executeCommandEx(this.nodeExecutable, [await this.getLeetCodeBinaryPath(), "session", "-d", id]); |
no test coverage detected