(type: Function)
| 75 | } |
| 76 | |
| 77 | static isAsyncResultFilter(type: Function): boolean { |
| 78 | return ObjectUtility.create(type.prototype) |
| 79 | instanceof ResultFilterAsync; |
| 80 | } |
| 81 | |
| 82 | static isSyncErrorMiddleware(type: Function): boolean { |
| 83 | return ObjectUtility.create(type.prototype) instanceof ErrorMiddleware; |