mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
chore: use jsdoc to annotate props
This commit is contained in:
parent
51034f24a3
commit
8c1ffd4cb0
5 changed files with 51 additions and 11 deletions
|
@ -1,5 +1,14 @@
|
|||
<script>
|
||||
/**
|
||||
* Use anchor link
|
||||
* @type {string} [href]
|
||||
*/
|
||||
export let href = undefined;
|
||||
|
||||
/**
|
||||
* Set to `true` if item is the current page
|
||||
* @type {boolean} [isCurrentPage=false]
|
||||
*/
|
||||
export let isCurrentPage = false;
|
||||
|
||||
import { Link } from "../Link";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue