swc/tests/projects/issue-467/input.ts
강동윤 8c7005d7ab
More testing (#469)
swc:
 - Move tests from node-swc to swc
 - Add integration tests (webpack, rxjs, angular-core)
 - Support `exclude`
 
swc_ecma_transforms:
 - More span validation
 - classes:
    - Strip `TsIndexSignature`

swc_ecma_parser:
 - Fix span of member expression
 - Fix span of binary expression
 - Fix span of unary expression
2019-11-26 10:08:48 +09:00

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()
);