anton-fedosieiev-sdk
Version:
8 lines (7 loc) • 324 B
TypeScript
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>;
}