You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 12, 2022. It is now read-only.
I have this method:
register(registerData: RegisterFingerprintData): Observable<{fingerToken: string} | OperationFailure> {..}that can return an Observable of type {fingerToken: string} or OperationFailure. When I add Jsdoc comments I get the following comments:
It says that returns an string but is not, it returns an Observable.
Thank you in advance!