@ -9,12 +9,18 @@
/**
/**
* @typedef { Object } Props
* @typedef { Object } Props
* @property { string } comment - My wonderful comment
* @property { string } comment - My wonderful comment
@ -22,11 +28,14 @@
* @property { any } one_line - one line comment
* @property { any } one_line - one line comment
* @property { any } no_comment
* @property { any } no_comment
* @property { boolean } type_no_comment
* @property { boolean } type_no_comment
* @property { boolean } type_with_comment - One-line declaration with comment
* @property { any } [optional] - This is optional
* @property { any } [optional] - This is optional
* @property { any } inline_commented - this should stay a comment
* @property { any } inline_commented - this should stay a comment
* @property { any } inline_commented_merged - This comment should be merged - with this inline comment
* @property { any } inline_commented_merged - This comment should be merged - with this inline comment
* @property { string } [inline_multiline_leading_comment] - this is a same-line leading multiline comment
* @property { string } [inline_multiline_leading_comment] - this is a same-line leading multiline comment
* @property { string } [inline_multiline_trailing_comment] - this is a same-line trailing multiline comment
* @property { string } [inline_multiline_trailing_comment] - this is a same-line trailing multiline comment
* @property { number } [default_value]
* @property { number } [comment_default_value] - This has a comment and an optional value.
*/
*/
/** @type { Props } */
/** @type { Props } */
@ -36,10 +45,13 @@
one_line,
one_line,
no_comment,
no_comment,
type_no_comment,
type_no_comment,
type_with_comment,
optional = { stuff : true } ,
optional = { stuff : true } ,
inline_commented,
inline_commented,
inline_commented_merged,
inline_commented_merged,
inline_multiline_leading_comment = 'world',
inline_multiline_leading_comment = 'world',
inline_multiline_trailing_comment = 'world'
inline_multiline_trailing_comment = 'world',
default_value = 1,
comment_default_value = 1
} = $props();
} = $props();
< / script >
< / script >