[firestore][types] Add Typescript types for Blob
This commit is contained in:
parent
5f21ddc0fc
commit
ff41a45fdd
File diff suppressed because it is too large
Load Diff
|
@ -3,7 +3,7 @@ import Base64 from './../../utils/Base64';
|
|||
export default class Blob {
|
||||
_binaryString: string;
|
||||
|
||||
constructor(binaryString) {
|
||||
constructor(binaryString: string) {
|
||||
this._binaryString = binaryString;
|
||||
}
|
||||
|
||||
|
|
|
@ -256,10 +256,10 @@ export default class Firestore extends ModuleBase {
|
|||
}
|
||||
|
||||
export const statics = {
|
||||
Blob,
|
||||
FieldPath,
|
||||
FieldValue,
|
||||
GeoPoint,
|
||||
Blob,
|
||||
enableLogging(enabled: boolean): void {
|
||||
// DEPRECATED: Remove method in v4.1.0
|
||||
console.warn(
|
||||
|
|
Loading…
Reference in New Issue