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
/
services
/
Logs.d.ts
11 lines
(10 loc)
•
252 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
type
Log
= {
Event
:
"eventlog"
;
Content
:
"contentlog"
; };
declare
const
LOG_TYPES
: {
Event
:
string
;
Content
:
string
; };
declare
const
getLogs
:
(
id
:
string
,
type
:
Log
) =>
Promise
<
any
[] |
undefined
>;
export
{ getLogs,
LOG_TYPES
};