UNPKG

@jingbof/rets-client

Version:

RETS (Real Estate Transaction Standards) Client in Typescript

10 lines (9 loc) 248 B
import { RetsFormat } from './RetsFormat'; export interface IRetsClientOptions { url: string; username: string; password: string; format?: RetsFormat; onResponse?: (response: any) => void; onParse?: (parsed: any) => void; }