LeDDGroup/typescript-transform-jsx

View on GitHub
examples/example-koa/src/routes.ts

Summary

Maintainability
A
0 mins
Test Coverage
const routes = {
  home: () => "/",
  user: {
    index: () => "/users",
    byId: (id: string) => `/users/${id}`
  }
};

export default routes;