fleet/frontend/interfaces/team_subnav.ts

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;
}