UNPKG

@mojaloop/ml-schema-transformer-lib

Version:
50 lines (41 loc) 2.81 kB
import { discovery, discovery_reverse } from './discovery.js'; import { quotes, quotes_reverse } from './quotes.js'; import { fxQuotes, fxQuotes_reverse } from './fxQuotes.js'; import { transfers, transfers_reverse } from './transfers.js'; import { fxTransfers, fxTransfers_reverse } from './fxTransfers.js'; /***** License -------------- Copyright © 2020-2025 Mojaloop Foundation The Mojaloop files are made available by the Mojaloop 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 http://www.apache.org/licenses/LICENSE-2.0 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. Contributors -------------- This is the official list of the Mojaloop project contributors for this file. Names of the original copyright holders (individuals or organizations) should be listed with a '*' in the first column. People who have contributed from an organization can be listed under the organization that actually holds the copyright for their contributions (see the Mojaloop Foundation for an example). Those individuals should have their names indented and be marked with a '-'. Email address can be added optionally within square brackets <email>. * Mojaloop Foundation - Name Surname <name.surname@mojaloop.io> * Steven Oderayi <steven.oderayi@infitx.com> -------------- ******/ declare const index_discovery: typeof discovery; declare const index_discovery_reverse: typeof discovery_reverse; declare const index_fxQuotes: typeof fxQuotes; declare const index_fxQuotes_reverse: typeof fxQuotes_reverse; declare const index_fxTransfers: typeof fxTransfers; declare const index_fxTransfers_reverse: typeof fxTransfers_reverse; declare const index_quotes: typeof quotes; declare const index_quotes_reverse: typeof quotes_reverse; declare const index_transfers: typeof transfers; declare const index_transfers_reverse: typeof transfers_reverse; declare namespace index { export { index_discovery as discovery, index_discovery_reverse as discovery_reverse, index_fxQuotes as fxQuotes, index_fxQuotes_reverse as fxQuotes_reverse, index_fxTransfers as fxTransfers, index_fxTransfers_reverse as fxTransfers_reverse, index_quotes as quotes, index_quotes_reverse as quotes_reverse, index_transfers as transfers, index_transfers_reverse as transfers_reverse }; } export { discovery, discovery_reverse, fxQuotes, fxQuotes_reverse, fxTransfers, fxTransfers_reverse, index as i, quotes, quotes_reverse, transfers, transfers_reverse };