We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e140ab commit 182630eCopy full SHA for 182630e
common/api-review/storage.api.md
@@ -237,14 +237,14 @@ export interface StorageReference {
237
}
238
239
// @public
240
-export type StringFormat = string;
+export type StringFormat = typeof StringFormat[keyof typeof StringFormat];
241
242
243
export const StringFormat: {
244
- RAW: string;
245
- BASE64: string;
246
- BASE64URL: string;
247
- DATA_URL: string;
+ readonly RAW: "raw";
+ readonly BASE64: "base64";
+ readonly BASE64URL: "base64url";
+ readonly DATA_URL: "data_url";
248
};
249
250
0 commit comments