UNPKG

1.55 kBTypeScriptView Raw
1/*****
2 License
3 --------------
4 Copyright © 2017 Bill & Melinda Gates Foundation
5 The Mojaloop files are made available by the Bill & Melinda Gates Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License. You may obtain a copy of the License at
6 http://www.apache.org/licenses/LICENSE-2.0
7 Unless required by applicable law or agreed to in writing, the Mojaloop files are distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
8 Contributors
9 --------------
10 This is the official list of the Mojaloop project contributors for this file.
11 Names of the original copyright holders (individuals or organizations)
12 should be listed with a '*' in the first column. People who have
13 contributed from an organization can be listed under the organization
14 that actually holds the copyright for their contributions (see the
15 Gates Foundation organization for an example). Those individuals should have
16 their names indented and be marked with a '-'. Email address can be added
17 optionally within square brackets <email>.
18 * Gates Foundation
19 - Name Surname <name.surname@gatesfoundation.com>
20
21 - Ramiro González Maciel <ramiro@modusbox.com>
22
23 --------------
24 ******/
25/**
26* Defines a method to process the result of an Event log
27*/
28interface EventPostProcessor {
29 postProcess(result: any): any;
30}
31export { EventPostProcessor };