UNPKG

anton-fedosieiev-sdk

Version:
9 lines (8 loc) 225 B
import { HasId, ApiResponse } from './base'; export declare type Quote = HasId & { dialog: string; movie: string; character: string; id: string; }; export declare type QuotesListResponse = ApiResponse<Quote>;