Skip to content

Commit ab52780

Browse files
committed
update api report
1 parent 36fc2a8 commit ab52780

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

common/api-review/storage.api.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,6 @@ export interface FirebaseStorage extends _FirebaseService {
5151
maxUploadRetryTime: number;
5252
}
5353

54-
// @public
55-
export interface FirebaseStorageError extends FirebaseError {
56-
serverResponse: string | null;
57-
}
58-
5954
// @internal
6055
export class _FirebaseStorageImpl implements FirebaseStorage {
6156
constructor(
@@ -238,14 +233,14 @@ export interface StorageReference {
238233
}
239234

240235
// @public
241-
export type StringFormat = string;
236+
export type StringFormat = typeof StringFormat[keyof typeof StringFormat];
242237

243238
// @public
244239
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";
249244
};
250245

251246
// @public

0 commit comments

Comments
 (0)