Run "yarn build:docs"

This commit is contained in:
Eric Liu 2022-05-13 09:31:48 -07:00
commit b3144e65ce
12 changed files with 81 additions and 71 deletions

View file

@ -55,10 +55,10 @@ export default class ComposedModal extends SvelteComponentTyped<
mouseover: WindowEventMap["mouseover"];
mouseenter: WindowEventMap["mouseenter"];
mouseleave: WindowEventMap["mouseleave"];
submit: CustomEvent<any>;
["click:button--primary"]: CustomEvent<any>;
close: CustomEvent<any>;
open: CustomEvent<any>;
submit: CustomEvent<null>;
["click:button--primary"]: CustomEvent<null>;
close: CustomEvent<null>;
open: CustomEvent<null>;
},
{ default: {} }
> {}