mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
11 lines
226 B
TypeScript
11 lines
226 B
TypeScript
import { InjectedRouter } from "react-router";
|
|
|
|
export interface ITeamSubnavProps {
|
|
location: {
|
|
pathname: string;
|
|
search: string;
|
|
hash?: string;
|
|
query: { fleet_id?: string };
|
|
};
|
|
router: InjectedRouter;
|
|
}
|