(type: Function)
| 45 | } |
| 46 | |
| 47 | static isAsyncRequestStartMiddleware(type: Function): boolean { |
| 48 | return ObjectUtility.create(type.prototype) |
| 49 | instanceof RequestStartMiddlewareAsync; |
| 50 | } |
| 51 | |
| 52 | static isSyncRequestEndMiddleware(type: Function): boolean { |
| 53 | return Object.create(type.prototype) |