chore: add more type docs

This commit is contained in:
Eric Liu 2020-07-25 11:30:45 -07:00
commit c3f924c25a
45 changed files with 517 additions and 50 deletions

View file

@ -1,4 +1,8 @@
<script>
/**
* Set to `true` to click the tile
* @type {boolean} [clicked=false]
*/
export let clicked = false;
/**

View file

@ -1,4 +1,8 @@
<script>
/**
* Set to `true` to expand the tile
* @type {boolean} [expanded=false]
*/
export let expanded = false;
/**

View file

@ -1,4 +1,8 @@
<script>
/**
* Set to `true` to check the tile
* @type {boolean} [checked=false]
*/
export let checked = false;
/**

View file

@ -1,4 +1,8 @@
<script>
/**
* Set to `true` to select the tile
* @type {boolean} [selected=false]
*/
export let selected = false;
/**