Skip to content

Commit 7819c19

Browse files
Fix regression in unique symbol type generation (#1096)
* fix unique symbol type. Originally we'd write `symbol` here. TypeDoc changed and we started emitting 'TODO'.
1 parent a79d914 commit 7819c19

File tree

1 file changed

+1
-1
lines changed
  • packages/lit-dev-content/site/_includes

1 file changed

+1
-1
lines changed

packages/lit-dev-content/site/_includes/api.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
{%- elif t.operator == 'keyof' -%}
6262
keyof {{ type(t.target) }}
6363

64-
{%- elif t.operator == 'unique' and t.target.name == 'symbol' -%}
64+
{%- elif t.type == "typeOperator" and t.operator == "unique" -%}
6565
symbol
6666

6767
{%- elif t.type == 'conditional' -%}

0 commit comments

Comments
 (0)