Run "yarn build:docs"

This commit is contained in:
Eric Liu 2022-02-02 20:07:19 -08:00
commit c02e87d7de
3 changed files with 24 additions and 16 deletions

View file

@ -118,12 +118,12 @@ export interface TextInputProps
export default class TextInput extends SvelteComponentTyped<
TextInputProps,
{
change: CustomEvent<null | number | string>;
input: CustomEvent<null | number | string>;
click: WindowEventMap["click"];
mouseover: WindowEventMap["mouseover"];
mouseenter: WindowEventMap["mouseenter"];
mouseleave: WindowEventMap["mouseleave"];
change: WindowEventMap["change"];
input: WindowEventMap["input"];
keydown: WindowEventMap["keydown"];
keyup: WindowEventMap["keyup"];
focus: WindowEventMap["focus"];