Run "yarn build:docs"

This commit is contained in:
Eric Liu 2022-02-21 08:23:05 -08:00
commit 9d9c7249ba
4 changed files with 10 additions and 14 deletions

View file

@ -69,11 +69,11 @@ export default class FileUploader extends SvelteComponentTyped<
{
add: CustomEvent<File[]>;
remove: CustomEvent<File[]>;
change: CustomEvent<File[]>;
click: WindowEventMap["click"];
mouseover: WindowEventMap["mouseover"];
mouseenter: WindowEventMap["mouseenter"];
mouseleave: WindowEventMap["mouseleave"];
change: WindowEventMap["change"];
keydown: WindowEventMap["keydown"];
},
{}

View file

@ -73,8 +73,8 @@ export interface FileUploaderButtonProps
export default class FileUploaderButton extends SvelteComponentTyped<
FileUploaderButtonProps,
{
change: CustomEvent<File[]>;
keydown: WindowEventMap["keydown"];
change: WindowEventMap["change"];
click: WindowEventMap["click"];
},
{ labelText: {} }