UNPKG
occaecatidicta
Version:
latest (1.0.0)
1.0.0
github.com/MyleneMcClure/occaecatidicta.git
MyleneMcClure/occaecatidicta
occaecatidicta
/
packages
/
omelox
/
lib
/
interfaces
/
define.ts
16 lines
(14 loc)
•
210 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** * master server info */
export
interface
MasterInfo { id:
string
; host:
string
; port: number; }
/** * Represents some Type of the Object. */
export
type
ObjectType<T> = {
new
(): T; };