1
1
'use strict' ;
2
2
3
- import * as chromeApi from './generated-google-u2f-api'
3
+ // @ts -ignore
4
+ import { chromeApi } from './generated-google-u2f-api'
4
5
5
6
6
7
// Feature detection (yes really)
@@ -40,6 +41,12 @@ export interface SignResponse {
40
41
signatureData : string ;
41
42
}
42
43
44
+ interface BackendError {
45
+ errorCode : keyof typeof ErrorCodes ;
46
+ }
47
+
48
+ type OrError < T > = T & BackendError ;
49
+
43
50
export type Transport = 'bt' | 'ble' | 'nfc' | 'usb' ;
44
51
export type Transports = Array < Transport > ;
45
52
@@ -50,7 +57,7 @@ export interface RegisteredKey {
50
57
appId : string ;
51
58
}
52
59
53
- var _backend : Promise < API > = null ;
60
+ var _backend : Promise < API > | null = null ;
54
61
function getBackend ( )
55
62
{
56
63
if ( _backend )
@@ -93,7 +100,7 @@ function getBackend( )
93
100
return notSupported ( ) ;
94
101
95
102
// Test for google extension support
96
- chromeApi . isSupported ( function ( ok )
103
+ chromeApi . isSupported ( function ( ok : any )
97
104
{
98
105
if ( ok )
99
106
resolve ( { u2f : chromeApi } ) ;
@@ -128,10 +135,10 @@ export const ErrorNames = {
128
135
"5" : "TIMEOUT"
129
136
} ;
130
137
131
- function makeError ( msg , err )
138
+ function makeError ( msg : string , err : BackendError )
132
139
{
133
140
const code = err != null ? err . errorCode : 1 ; // Default to OTHER_ERROR
134
- const type = ErrorNames [ '' + code ] ;
141
+ const type = ErrorNames [ < keyof typeof ErrorNames > ( '' + code ) ] ;
135
142
const error = new Error ( msg ) ;
136
143
( < any > error ) . metaData = { type, code } ;
137
144
return error ;
@@ -143,7 +150,7 @@ export function isSupported( )
143
150
. then ( backend => ! ! backend . u2f ) ;
144
151
}
145
152
146
- function _ensureSupport ( backend )
153
+ function _ensureSupport ( backend : API )
147
154
{
148
155
if ( ! backend . u2f )
149
156
{
@@ -196,7 +203,7 @@ export function register(
196
203
if ( typeof signRequests === 'number' && typeof timeout === 'undefined' )
197
204
{
198
205
timeout = signRequests ;
199
- signRequests = null ;
206
+ signRequests = [ ] ;
200
207
}
201
208
202
209
const _signRequests = arrayify (
@@ -212,7 +219,7 @@ export function register(
212
219
213
220
return new Promise < RegisterResponse > ( function ( resolve , reject )
214
221
{
215
- function callback ( response )
222
+ function callback ( response : OrError < RegisterResponse > )
216
223
{
217
224
if ( response . errorCode )
218
225
reject ( makeError ( "Registration failed" , response ) ) ;
@@ -248,7 +255,7 @@ export function sign(
248
255
249
256
return new Promise < SignResponse > ( function ( resolve , reject )
250
257
{
251
- function callback ( response )
258
+ function callback ( response : OrError < SignResponse > )
252
259
{
253
260
if ( response . errorCode )
254
261
reject ( makeError ( "Sign failed" , response ) ) ;
0 commit comments