https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react-router/index.d.ts
export function useParams<Params extends { [K in keyof Params]?: string } = {}>(): { [p in keyof Params]: keyof Params[p] extends undefined ? string | undefined : string };
- ジェネリック型パラメーター宣言
- key は Params のプロパティ名、value は string