Skip to content

Commit 6f0c641

Browse files
ExE-BossTypeScript Bot
authored andcommitted
fix(lib/es2019): Symbol.description may be undefined (microsoft#36263)
* fix(lib/es2019): `Symbol.description` may be `undefined` * Update user baselines (EB-Forks#1) Co-authored-by: TypeScript Bot <[email protected]>
1 parent 3b919e2 commit 6f0c641

File tree

3 files changed

+924
-7
lines changed

3 files changed

+924
-7
lines changed

src/lib/es2019.symbol.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
interface Symbol {
22
/**
3-
* expose the [[Description]] internal slot of a symbol directly
3+
* Expose the [[Description]] internal slot of a symbol directly.
44
*/
5-
readonly description: string;
5+
readonly description: string | undefined;
66
}

tests/baselines/reference/docker/azure-sdk.log

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@ XX of XX: [@azure/event-hubs] completed successfully in ? seconds
1919
XX of XX: [@azure/event-processor-host] completed successfully in ? seconds
2020
XX of XX: [@azure/keyvault-keys] completed successfully in ? seconds
2121
XX of XX: [@azure/keyvault-secrets] completed successfully in ? seconds
22-
XX of XX: [@azure/storage-blob] completed successfully in ? seconds
22+
Warning: You have changed the public API signature for this project. Updating review/storage-blob.api.md
2323
XX of XX: [@azure/ai-text-analytics] completed successfully in ? seconds
2424
XX of XX: [@azure/core-arm] completed successfully in ? seconds
2525
XX of XX: [@azure/core-tracing] completed successfully in ? seconds
26+
Warning: You have changed the public API signature for this project. Updating review/cosmos.api.md
2627
dist-esm/index.js → dist/index.js...
2728
(!) Unresolved dependencies
2829
https://rollupjs.org/guide/en/#warning-treating-module-as-external-dependency
@@ -54,7 +55,7 @@ XX of XX: [@azure/storage-file-share] completed successfully in ? seconds
5455
XX of XX: [@azure/storage-queue] completed successfully in ? seconds
5556
XX of XX: [@azure/template] completed successfully in ? seconds
5657
XX of XX: [testhub] completed successfully in ? seconds
57-
SUCCESS (23)
58+
SUCCESS (22)
5859
================================
5960
@azure/abort-controller (? seconds)
6061
@azure/core-auth (? seconds)
@@ -70,7 +71,6 @@ SUCCESS (23)
7071
@azure/event-processor-host (? seconds)
7172
@azure/keyvault-keys (? seconds)
7273
@azure/keyvault-secrets (? seconds)
73-
@azure/storage-blob (? seconds)
7474
@azure/ai-text-analytics (? seconds)
7575
@azure/core-arm (? seconds)
7676
@azure/core-tracing (? seconds)
@@ -80,9 +80,12 @@ SUCCESS (23)
8080
@azure/template (? seconds)
8181
testhub (? seconds)
8282
================================
83-
SUCCESS WITH WARNINGS (1)
83+
SUCCESS WITH WARNINGS (2)
8484
================================
85+
@azure/storage-blob (? seconds)
86+
Warning: You have changed the public API signature for this project. Updating review/storage-blob.api.md
8587
@azure/cosmos (? seconds)
88+
Warning: You have changed the public API signature for this project. Updating review/cosmos.api.md
8689
dist-esm/index.js → dist/index.js...
8790
(!) Unresolved dependencies
8891
https://rollupjs.org/guide/en/#warning-treating-module-as-external-dependency
@@ -156,7 +159,7 @@ rush rebuild - Errors! ( ? seconds)
156159

157160

158161
Standard error:
159-
162+
XX of XX: [@azure/storage-blob] completed with warnings in ? seconds
160163
XX of XX: [@azure/app-configuration] failed to build!
161164
XX of XX: [@azure/cosmos] completed with warnings in ? seconds
162165
XX of XX: [@azure/eventhubs-checkpointstore-blob] failed to build!

0 commit comments

Comments
 (0)