Skip to content

Commit 5aafd26

Browse files
committed
fix(lib/es2019): Symbol.description may be undefined
1 parent e2e1f6f commit 5aafd26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
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
}

0 commit comments

Comments
 (0)