Stash initial work to bring TSC from over 6 mins to under 1 minute
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
c659afa8db
commit
830aebd258
1 changed files with 4 additions and 1 deletions
|
@ -51,7 +51,10 @@ type DynamicHtmlElementProps<T extends keyof JSX.IntrinsicElements> =
|
||||||
type DynamicElementProps<T extends keyof JSX.IntrinsicElements> = Partial<
|
type DynamicElementProps<T extends keyof JSX.IntrinsicElements> = Partial<
|
||||||
Omit<JSX.IntrinsicElements[T], "ref" | "onClick" | "onMouseDown" | "onKeyUp" | "onKeyDown">
|
Omit<JSX.IntrinsicElements[T], "ref" | "onClick" | "onMouseDown" | "onKeyUp" | "onKeyDown">
|
||||||
> &
|
> &
|
||||||
Omit<InputHTMLAttributes<Element>, "onClick">;
|
Pick<
|
||||||
|
InputHTMLAttributes<Element>,
|
||||||
|
"onKeyDown" | "onKeyUp" | "onMouseOver" | "onFocus" | "alt" | "type" | "autoFocus" | "children"
|
||||||
|
>;
|
||||||
|
|
||||||
type TooltipProps = ComponentProps<typeof Tooltip>;
|
type TooltipProps = ComponentProps<typeof Tooltip>;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue