Joon Kyoung

Results 2 comments of Joon Kyoung

How about this way? ```ts import nextRoutes, { Registry } from 'next-routes'; type NextRoutes = () => Registry; const routes = (nextRoutes as unknown as NextRoutes)() .add('home', '/'); export default...