Run "yarn build:docs"

This commit is contained in:
Eric Liu 2022-02-01 07:13:12 -08:00
commit 63d77e3521
3 changed files with 14 additions and 5 deletions

View file

@ -91,6 +91,11 @@ export interface TooltipProps
export default class Tooltip extends SvelteComponentTyped<
TooltipProps,
{ click: WindowEventMap["click"]; mousedown: WindowEventMap["mousedown"] },
{
open: CustomEvent<any>;
close: CustomEvent<any>;
click: WindowEventMap["click"];
mousedown: WindowEventMap["mousedown"];
},
{ default: {}; icon: {}; triggerText: {} }
> {}