UNPKG
anton-fedosieiev-sdk
Version:
latest (1.0.0)
1.0.0
Simple LOTR SDK
github.com/anton-fedoseev/anton-fedosieiev-sd
anton-fedoseev/anton-fedosieiev-sdk
anton-fedosieiev-sdk
/
lib
/
types
/
chapters.d.ts
7 lines
(6 loc)
•
197 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
HasId
,
ApiResponse
}
from
'./base'
;
export
declare
type
Chapter
=
HasId
& {
chapterName
:
string
;
book
?:
string
; };
export
declare
type
ChaptersListResponse
=
ApiResponse
<
Chapter
>;