mirror of
https://github.com/swc-project/swc.git
synced 2025-01-06 04:54:03 +03:00
8 lines
200 B
TypeScript
8 lines
200 B
TypeScript
import { NextFunction, Request, Response } from "express";
|
|
import express from "express";
|
|
|
|
app.use((err: Error, req: Request, res: Response, next: NextFunction) => {
|
|
});
|
|
app.use(
|
|
express.static()
|
|
); |