@feast-dev/feast-ui
Version:
Web UI for the [Feast Feature Store](https://feast.dev/)
8 lines • 357 B
TypeScript
import { type EuiLinkAnchorProps } from "@elastic/eui";
import { type To } from "react-router-dom";
interface EuiCustomLinkProps extends Omit<EuiLinkAnchorProps, "href"> {
to: To;
}
export default function EuiCustomLink({ to, ...rest }: EuiCustomLinkProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=EuiCustomLink.d.ts.map