(type: Function)
| 30 | } |
| 31 | |
| 32 | static isAsyncMiddleWare(type: Function): boolean { |
| 33 | return ObjectUtility.create(type.prototype) |
| 34 | instanceof MiddlewareAsync; |
| 35 | } |
| 36 | |
| 37 | static isSyncAppStartMiddleware(type: Function): boolean { |
| 38 | return ObjectUtility.create(type.prototype) |