UNPKG

@altravia/openapi

Version:
20 lines 670 B
import { AxiosInstance } from "axios"; import { Environment, Service } from ".."; export interface Company { valid?: boolean; format_valid?: boolean; country_code?: string; vat_number?: string; company_name?: string; company_address?: string; } export declare class EuropeanVat implements Service { client: AxiosInstance; readonly service = "europeanvat"; readonly baseUrl = "europeanvat.altravia.com"; environment: Environment; constructor(client: AxiosInstance, environment: Environment); getInformation(country: string, vat?: string): Promise<Company>; get url(): string; } //# sourceMappingURL=EuropeanVat.d.ts.map