Run "yarn build:docs"

This commit is contained in:
Eric Liu 2022-05-12 20:16:06 -07:00
commit d4cf087050
3 changed files with 13 additions and 7 deletions

View file

@ -46,6 +46,10 @@ export interface HeaderActionProps
export default class HeaderAction extends SvelteComponentTyped<
HeaderActionProps,
{ click: WindowEventMap["click"]; close: CustomEvent<any> },
{
open: CustomEvent<null>;
close: CustomEvent<null>;
click: WindowEventMap["click"];
},
{ default: {}; closeIcon: {}; icon: {}; text: {} }
> {}