UNPKG
med-log
Version:
latest (0.2.3)
0.2.3
0.2.2
0.2.1
0.2.0
0.1.13
0.1.11
0.1.1
0.1.0
Logging package intended for gxp/samd regulated environments hosted in the cloud
med-log
/
lib
/
models
/
IAzure.ts
8 lines
(7 loc)
•
210 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{
LogLevel
}
from
"../logLevel"
;
export
interface
IAzure
{
origin
:
string
;
container
:
string
;
keyToken
:
string
;
log
:
(
logLevel
:
LogLevel
, ...
text
:
string
[]
) =>
Promise
<
boolean
>; }