(node?: LeetCodeNode)
| 53 | } |
| 54 | |
| 55 | export async function showProblem(node?: LeetCodeNode): Promise<void> { |
| 56 | if (!node) { |
| 57 | return; |
| 58 | } |
| 59 | await showProblemInternal(node); |
| 60 | } |
| 61 | |
| 62 | export async function searchProblem(): Promise<void> { |
| 63 | if (!leetCodeManager.getUser()) { |
nothing calls this directly
no test coverage detected