onesky-api-wrapper
Version:
A fully typed wrapper for the OneSky API.
11 lines (10 loc) • 350 B
TypeScript
import { OneSkyConfig } from '../../http/index.js';
import { QuotationParams, QuotationResponse } from './quotation.model.js';
export declare class QuotationeApi {
private _http;
constructor(config: OneSkyConfig);
show(options: {
projectId: string;
params: QuotationParams;
}): Promise<QuotationResponse>;
}