You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
interfaceFoo{
get value(): string;setvalue(value: string);getcursorPosition(): number|null;setcursorPosition(position: number);}
deno doc generates the following:
and, if I open the details:
From this generated output, it's impossible to tell that they are a getter and a setter.
Ideally deno doc should show value and cursorPosition as properties (being careful about showing their types, because cursorPosition has different types for get and for set). If not possible, it should at least show somehow that they are a getter and a setter.
The text was updated successfully, but these errors were encountered:
Version: Deno 2.0.4
My code:
deno doc
generates the following:and, if I open the details:
From this generated output, it's impossible to tell that they are a getter and a setter.
Ideally
deno doc
should showvalue
andcursorPosition
as properties (being careful about showing their types, becausecursorPosition
has different types forget
and forset
). If not possible, it should at least show somehow that they are a getter and a setter.The text was updated successfully, but these errors were encountered: