chore: remove trailing semicolono from jsdoc types

This commit is contained in:
Eric Liu 2020-07-27 06:23:31 -07:00
commit a10693659e
12 changed files with 22 additions and 24 deletions

View file

@ -1,6 +1,4 @@
<script>
/**
* Set the size of the input
* @type {"sm" | "xl"} [size]
@ -100,10 +98,10 @@
/**
* @typedef {"increment" | "decrement"} NumberInputTranslationId
*/
/**
* Override the default translation ids
* @type {(id: NumberInputTranslationId) => string;} [translateWithId = (id: NumberInputTranslationId) => string;]
* @type {(id: NumberInputTranslationId) => string} [translateWithId = (id: NumberInputTranslationId) => string]
*/
export let translateWithId = (id) => defaultTranslations[id];