13 lines
241 B
TypeScript
13 lines
241 B
TypeScript
![]() |
import { JSX } from "solid-js";
|
||
|
|
||
|
export interface ChildProps {
|
||
|
children?: JSX.Element,
|
||
|
className?: string,
|
||
|
id?: string,
|
||
|
}
|
||
|
|
||
|
export interface LinkProps extends ChildProps {
|
||
|
to?: string,
|
||
|
rel?: string,
|
||
|
newTab?: boolean,
|
||
|
}
|