File tree Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import { cx } from "./cx";
1010export type { FrCxArg } from "./cx" ;
1111export { DsfrLangProvider } from "./i18n" ;
1212export { createDsfrLinkProvider } from "./routing" ;
13- export type { RegisterLink , RegisteredLinkProps , HTMLAnchorProps } from "./routing" ;
13+ export type { RegisterLink , RegisteredLinkProps } from "./routing" ;
1414
1515export const fr = {
1616 breakpoints,
Original file line number Diff line number Diff line change 11import React , { createContext , useContext } from "react" ;
22import type { ReactNode } from "react" ;
33import { assert } from "tsafe/assert" ;
4-
54import type { DetailedHTMLProps , AnchorHTMLAttributes } from "react" ;
65
7- // eslint-disable-next-line @typescript-eslint/no-empty-interface
8-
9- /*
10- export interface LinkProps extends React.AriaAttributes {
11- className?: string;
12- children?: ReactNode;
13- }
14- */
15-
16- export type HTMLAnchorProps = DetailedHTMLProps <
6+ type HTMLAnchorProps = DetailedHTMLProps <
177 AnchorHTMLAttributes < HTMLAnchorElement > ,
188 HTMLAnchorElement
199> ;
You can’t perform that action at this time.
0 commit comments