polen
Version:
A framework for delightful GraphQL developer portals
11 lines • 489 B
TypeScript
import type { FC } from 'react';
import type { LinkProps as LinkPropsReactRouter } from 'react-router';
import type { LinkPropsRadix } from './RadixLink.js';
export declare const Link: FC<LinkPropsReactRouter & Omit<LinkPropsRadix, `asChild`>>;
export interface PathActiveReport {
is: boolean;
isDirect: boolean;
isDescendant: boolean;
}
export declare const getPathActiveReport: (pathExp: string, currentPathExp: string) => PathActiveReport;
//# sourceMappingURL=Link.d.ts.map