Skip to content

Commit 182630e

Browse files
committed
Update API reports
1 parent 5e140ab commit 182630e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

common/api-review/storage.api.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -237,14 +237,14 @@ export interface StorageReference {
237237
}
238238

239239
// @public
240-
export type StringFormat = string;
240+
export type StringFormat = typeof StringFormat[keyof typeof StringFormat];
241241

242242
// @public
243243
export const StringFormat: {
244-
RAW: string;
245-
BASE64: string;
246-
BASE64URL: string;
247-
DATA_URL: string;
244+
readonly RAW: "raw";
245+
readonly BASE64: "base64";
246+
readonly BASE64URL: "base64url";
247+
readonly DATA_URL: "data_url";
248248
};
249249

250250
// @public

0 commit comments

Comments
 (0)