UNPKG

anton-fedosieiev-sdk

Version:
8 lines (7 loc) 324 B
import { ApiBase } from './base'; import { QuotesListResponse, AuthRequestParams } from '../types'; export declare class QuoteService extends ApiBase { path: string; getQuotesList(params: AuthRequestParams): Promise<QuotesListResponse>; getQuote({ id, token }: AuthRequestParams): Promise<QuotesListResponse>; }