File tree 1 file changed +5
-10
lines changed 1 file changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -51,11 +51,6 @@ export interface FirebaseStorage extends _FirebaseService {
51
51
maxUploadRetryTime: number ;
52
52
}
53
53
54
- // @public
55
- export interface FirebaseStorageError extends FirebaseError {
56
- serverResponse: string | null ;
57
- }
58
-
59
54
// @internal
60
55
export class _FirebaseStorageImpl implements FirebaseStorage {
61
56
constructor (
@@ -238,14 +233,14 @@ export interface StorageReference {
238
233
}
239
234
240
235
// @public
241
- export type StringFormat = string ;
236
+ export type StringFormat = typeof StringFormat [ keyof typeof StringFormat ] ;
242
237
243
238
// @public
244
239
export const StringFormat: {
245
- RAW: string ;
246
- BASE64: string ;
247
- BASE64URL: string ;
248
- DATA_URL: string ;
240
+ readonly RAW: " raw " ;
241
+ readonly BASE64: " base64 " ;
242
+ readonly BASE64URL: " base64url " ;
243
+ readonly DATA_URL: " data_url " ;
249
244
};
250
245
251
246
// @public
You can’t perform that action at this time.
0 commit comments