types.ts 137 B

1234567891011
  1. export type TRouteMatchId = {
  2. params: {
  3. id: string;
  4. };
  5. };
  6. export type TRouteMatchName = {
  7. params: {
  8. name: string;
  9. };
  10. };