(type: Function)
| 55 | } |
| 56 | |
| 57 | static isAsyncRequestEndMiddleware(type: Function): boolean { |
| 58 | return Object.create(type.prototype) |
| 59 | instanceof RequestEndMiddlewareAsync; |
| 60 | } |
| 61 | |
| 62 | static isSyncActionFilter(type: Function): boolean { |
| 63 | return ObjectUtility.create(type.prototype) |