* Utilize the given middleware `handle` to the given `route`, * defaulting to _/_. This "route" is the mount-point for the * middleware, when given a value other than _/_ the middleware * is only effective when that segment is present in the request's * pathname. * * Fo
(fn: NextHandleFunction)
| 62 | * not be invoked for _/_, or _/posts_. |
| 63 | */ |
| 64 | use(fn: NextHandleFunction): Server |
| 65 | use(fn: HandleFunction): Server |
| 66 | use(route: string, fn: NextHandleFunction): Server |
| 67 | use(route: string, fn: HandleFunction): Server |
no outgoing calls