Skip to content

Commit ea3af4f

Browse files
Disable Lint
1 parent 7bac0b4 commit ea3af4f

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

packages/firestore/lite/index.d.ts

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,15 @@
1717

1818
import { FirebaseApp } from '@firebase/app-types';
1919

20-
export type DocumentData = { [field: string]: any };
20+
/* eslint-disable @typescript-eslint/no-explicit-any */
2121

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+
}
2329

2430
export interface Settings {
2531
host?: string;
@@ -116,9 +122,9 @@ export class Blob {
116122

117123
static fromUint8Array(array: Uint8Array): Blob;
118124

119-
public toBase64(): string;
125+
toBase64(): string;
120126

121-
public toUint8Array(): Uint8Array;
127+
toUint8Array(): Uint8Array;
122128

123129
isEqual(other: Blob): boolean;
124130
}

0 commit comments

Comments
 (0)