mirror of
https://github.com/fleetdm/fleet
synced 2026-05-06 06:48:54 +00:00
## ➡️ #15965 Without global setting:  With global setting:  - [x] Changes file added for user-visible changes in `changes/` - [x] Added/updated tests - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com> Co-authored-by: Sharon Katz <121527325+sharon-fdm@users.noreply.github.com>
11 lines
225 B
TypeScript
11 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;
|
|
}
|