UNPKG

anton-fedosieiev-sdk

Version:
7 lines (6 loc) 197 B
import { HasId, ApiResponse } from './base'; export declare type Chapter = HasId & { chapterName: string; book?: string; }; export declare type ChaptersListResponse = ApiResponse<Chapter>;