File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change 17
17
18
18
import { FirebaseApp } from '@firebase/app-types' ;
19
19
20
- export type DocumentData = { [ field : string ] : any } ;
20
+ /* eslint-disable @typescript-eslint/no-explicit- any */
21
21
22
- export type UpdateData = { [ fieldPath : string ] : any } ;
22
+ export interface DocumentData {
23
+ [ field : string ] : any ;
24
+ }
25
+
26
+ export interface UpdateData {
27
+ [ fieldPath : string ] : any ;
28
+ }
23
29
24
30
export interface Settings {
25
31
host ?: string ;
@@ -116,9 +122,9 @@ export class Blob {
116
122
117
123
static fromUint8Array ( array : Uint8Array ) : Blob ;
118
124
119
- public toBase64 ( ) : string ;
125
+ toBase64 ( ) : string ;
120
126
121
- public toUint8Array ( ) : Uint8Array ;
127
+ toUint8Array ( ) : Uint8Array ;
122
128
123
129
isEqual ( other : Blob ) : boolean ;
124
130
}
You can’t perform that action at this time.
0 commit comments