old.martials.no/src/types/interfaces.ts

13 lines
241 B
TypeScript
Raw Normal View History

2022-12-04 17:51:05 +01:00
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,
}