UNPKG
@alline/core
Version:
latest (3.2.0)
3.2.0
3.1.0
3.0.2
3.0.1
3.0.0
2.4.0
2.3.4
2.3.3
2.3.2
2.3.1
2.3.0
2.2.0
2.1.0
2.0.0
1.1.0
1.0.1
1.0.0
Core for Alline.
gitlab.com/alline/core
@alline/core
/
lib
/
type.d.ts
13 lines
(12 loc)
•
271 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
Episode
}
from
"@alline/model"
;
import
{
Logger
}
from
"winston"
;
export
interface
EpisodeContext
{
title
:
string
;
season
:
number
;
episode
:
number
;
logger
:
Logger
; }
export
interface
EpisodeResult
{
data
:
Episode
;
thumbnails
:
string
[]; }