mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
12 lines
225 B
TypeScript
12 lines
225 B
TypeScript
|
|
import { InjectedRouter } from "react-router";
|
||
|
|
|
||
|
|
export interface ITeamSubnavProps {
|
||
|
|
location: {
|
||
|
|
pathname: string;
|
||
|
|
search: string;
|
||
|
|
hash?: string;
|
||
|
|
query: { team_id?: string };
|
||
|
|
};
|
||
|
|
router: InjectedRouter;
|
||
|
|
}
|