UNPKG
grpc-server-ts
Version:
latest (1.1.4)
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
a grpc server side module built by typescrpt
github.com/xuezier/grpc-server-ts
grpc-server-ts
/
src
/
interface
/
Settings.ts
17 lines
(12 loc)
•
242 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export
interface
Settings
{
// grpc bind port
port
:
string
|
number
;
// grpc bind host
host
?:
string
;
// ca file path string
ca
?:
string
;
// cert file path string
cert
?:
string
;
// key file path string
key
?:
string
; }