UNPKG

anton-fedosieiev-sdk

Version:
15 lines (14 loc) 347 B
import { HasId, ApiResponse } from './base'; export declare type Character = HasId & { height: string; race: string; gender: string; birth: string; spouse: string; death: string; realm: string; hair: string; name: string; wikiUrl: string; }; export declare type MoviesListResponse = ApiResponse<Character>;