-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathambient.d.ts
40 lines (34 loc) · 1.79 KB
/
ambient.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*****
License
--------------
Copyright © 2020 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 organization 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 <[email protected]>
* Google
- Abhimanyu Kapur <[email protected]>
- Steven Wijaya <[email protected]>
--------------
******/
type MojaloopClient = import('~/shared/ml-thirdparty-client').MojaloopClient
type Server = import('@hapi/hapi').Server
type ServerApplicationState = import('@hapi/hapi').ServerApplicationState
interface PISPServerApplicationState extends ServerApplicationState {
mojaloopClient: MojaloopClient
}
interface StateServer extends Server {
app: PISPServerApplicationState
}
declare module '@mojaloop/central-services-shared'