chore: fix typos in type annotations

This commit is contained in:
Eric Liu 2022-04-30 08:49:48 -07:00
commit 92a360fbdc
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@
*
* To implement your own client-side filtering, pass a function
* that accepts a row and value and returns a boolean.
* @type {boolean | ((rows: import("./DataTable.svelte").DataTableRow, value: number | string) => boolean)}
* @type {boolean | ((row: import("./DataTable.svelte").DataTableRow, value: number | string) => boolean)}
*/
export let shouldFilterRows = false;

View file

@ -26,7 +26,7 @@
/**
* Specify the kind of file uploader button
* @type {"primary" | "secondary" | "tertiary" | "ghost" | "danger"}]
* @type {"primary" | "secondary" | "tertiary" | "ghost" | "danger"}
*/
export let kind = "primary";