@typespec/compiler 0.44.0-dev.23 → 0.44.0-dev.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/manifest.js +1 -1
- package/lib/decorators.tsp +4 -4
- package/package.json +1 -1
package/dist/manifest.js
CHANGED
package/lib/decorators.tsp
CHANGED
|
@@ -378,13 +378,13 @@ enum DurationKnownEncoding {
|
|
|
378
378
|
*/
|
|
379
379
|
enum BytesKnownEncoding {
|
|
380
380
|
/**
|
|
381
|
-
*
|
|
381
|
+
* Encode to Base64
|
|
382
382
|
*/
|
|
383
|
-
|
|
383
|
+
base64: "base64",
|
|
384
384
|
/**
|
|
385
|
-
* Encode to
|
|
385
|
+
* Encode to Base64 Url
|
|
386
386
|
*/
|
|
387
|
-
|
|
387
|
+
base64url: "base64url",
|
|
388
388
|
}
|
|
389
389
|
|
|
390
390
|
/**
|