fix(tag): define JSDoc restProps type

This commit is contained in:
Eric Liu 2020-11-19 09:10:30 -08:00
commit 26ce330e1d
4 changed files with 16 additions and 22 deletions

4
types/Tag/Tag.d.ts vendored
View file

@ -1,6 +1,8 @@
/// <reference types="svelte" />
export interface TagProps {
export interface TagProps
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["div"]>,
svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["span"]> {
/**
* Specify the type of tag
*/