UNPKG

@skyux/router

Version:

This library was generated with [Nx](https://nx.dev).

18 lines (17 loc) 304 B
/** * A link to add to the recently accessed links. */ export interface SkyRecentlyAccessedAddLink { /** * The link's app. */ app: string; /** * The link's route. */ route: string; /** * The link's parameters. */ params?: Record<string, string>; }