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
/
quote.d.ts
9 lines
(8 loc)
•
225 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
HasId
,
ApiResponse
}
from
'./base'
;
export
declare
type
Quote
=
HasId
& {
dialog
:
string
;
movie
:
string
;
character
:
string
;
id
:
string
; };
export
declare
type
QuotesListResponse
=
ApiResponse
<
Quote
>;