(onFulfilled?: (value: R) => U | Thenable<U>, onRejected?: (error: any) => U | Thenable<U>)
| 180 | |
| 181 | interface Promise<R> extends Thenable<R> { |
| 182 | then<U>(onFulfilled?: (value: R) => U | Thenable<U>, onRejected?: (error: any) => U | Thenable<U>): Promise<U>; |
| 183 | then<U>(onFulfilled?: (value: R) => U | Thenable<U>, onRejected?: (error: any) => void): Promise<U>; |
| 184 | catch<U>(onRejected?: (error: any) => U | Thenable<U>): Promise<U>; |
| 185 | } |
no outgoing calls
no test coverage detected