()
| 104 | } |
| 105 | |
| 106 | function shouldResume() { |
| 107 | // Could show a notification with the option to resume. |
| 108 | return new Promise<boolean>((_resolve, _reject) => { |
| 109 | // noop |
| 110 | }); |
| 111 | } |
| 112 | |
| 113 | async function validateNameIsUnique(name: string) { |
| 114 | // ...validate... |
no outgoing calls
no test coverage detected