mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-20 12:23:02 +00:00
chore: fix typos in type annotations
This commit is contained in:
parent
77b6e4f831
commit
92a360fbdc
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue