UNPKG

@saysimple/node-sdk

Version:

The official SaySimple Node SDK. Want to use our awesome customer conversations platform? Please visit: https://saysimple.com

8 lines (7 loc) 359 B
import { DomainInterface } from "../types/domain-interface"; import { HttpClientInterface } from "../types/base/http-client-interface"; export declare abstract class Domain implements DomainInterface { readonly abstract VERSION: string; protected readonly httpClient: HttpClientInterface; protected constructor(httpClient: HttpClientInterface); }