UNPKG

anton-fedosieiev-sdk

Version:
8 lines (7 loc) 336 B
import { ApiBase } from './base'; import { ChaptersListResponse, AuthRequestParams } from '../types'; export declare class ChapterService extends ApiBase { path: string; getChaptersList(params: AuthRequestParams): Promise<ChaptersListResponse>; getChapter({ id, token }: AuthRequestParams): Promise<ChaptersListResponse>; }