preactjs / preact-router

:earth_americas: URL router for Preact.
http://npm.im/preact-router
MIT License
1.01k stars 156 forks source link

Typescript type for Match props passed to children #456

Open akornatskyy opened 1 year ago

akornatskyy commented 1 year ago

Something like the following would help:

export type MatchChildrenProps = {
  matches: boolean;
  url: string;
  path: string;
}