(id: string)
| 159 | } |
| 160 | |
| 161 | public async deleteSession(id: string): Promise<string> { |
| 162 | return await this.executeCommandEx(this.nodeExecutable, [await this.getLeetCodeBinaryPath(), "session", "-d", id]); |
| 163 | } |
| 164 | |
| 165 | public async submitSolution(filePath: string): Promise<string> { |
| 166 | try { |
no test coverage detected