(options?: Options)
| 2 | import type { App } from '@tinyhttp/app' |
| 3 | |
| 4 | export const pug = (options?: Options) => { |
| 5 | return function pug(app: App<Options>) { |
| 6 | return app.engine('pug', (path, _, opts, cb) => renderFile(path, options || opts, cb)) |
| 7 | } |
| 8 | } |
no test coverage detected