Skip to content

Commit 4391fc2

Browse files
authored
[b] Fix type for index signature when strictNullChecks is true (#506) (#515)
1 parent 9bbbcd8 commit 4391fc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/angular-token/src/lib/angular-token.model.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export interface RegisterData {
1616
}
1717

1818
export interface RegisterData {
19-
[key: string]: string;
19+
[key: string]: string | undefined;
2020
}
2121

2222
export interface UpdatePasswordData {

0 commit comments

Comments
 (0)