soapbox/app/soapbox/types/history.ts

9 wiersze
195 B
TypeScript

import { useHistory, useLocation } from 'react-router-dom';
type History = ReturnType<typeof useHistory>;
type Location = ReturnType<typeof useLocation>;
export type {
History,
Location,
};