12 lines
226 B
TypeScript
12 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;
|
|
}
|