UNPKG
@gotamedia/oc
Version:
latest (0.3.0)
0.3.0
0.2.1
0.2.0
0.1.1
0.1.0
0.0.3
0.0.2
0.0.1
Set of OC helper for NodeJs Runtime.
bitbucket.org/gotamedia/oc
@gotamedia/oc
/
configure.d.ts
9 lines
(8 loc)
•
270 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
type
OC_SERVICE_CONFIG_Type = {
baseUrl
:
string
;
username
:
string
;
password
:
string
; };
declare
let
OC_SERVICE_CONFIG
: OC_SERVICE_CONFIG_Type;
declare
const
configure
:
(
config
: OC_SERVICE_CONFIG_Type
) =>
void
;
export
{
OC_SERVICE_CONFIG
, configure };