preactjs / preact-router

:earth_americas: URL router for Preact.

Home Page:http://npm.im/preact-router

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Typescript type for Match props passed to children

akornatskyy opened this issue · comments

Something like the following would help:

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