(type: Function)
| 40 | } |
| 41 | |
| 42 | static isSyncRequestStartMiddleware(type: Function): boolean { |
| 43 | return ObjectUtility.create(type.prototype) |
| 44 | instanceof RequestStartMiddleware; |
| 45 | } |
| 46 | |
| 47 | static isAsyncRequestStartMiddleware(type: Function): boolean { |
| 48 | return ObjectUtility.create(type.prototype) |