@tanstack/solid-router
Version:
Modern and scalable routing for Solid applications
8 lines (7 loc) • 323 B
text/typescript
import { RouterManagedTag } from '@tanstack/router-core';
/**
* Build the list of head/link/meta/script tags to render for active matches.
* Used internally by `HeadContent`.
*/
export declare const useTags: () => () => RouterManagedTag[];
export declare function uniqBy<T>(arr: Array<T>, fn: (item: T) => string): T[];