@saysimple/node-sdk
Version:
The official SaySimple Node SDK. Want to use our awesome customer conversations platform? Please visit: https://saysimple.com
15 lines (11 loc) • 413 B
text/typescript
import { DomainInterface } from "../types/domain-interface";
import { HttpClientInterface } from "../types/base/http-client-interface";
export abstract class Domain implements DomainInterface {
readonly abstract VERSION: string;
protected readonly httpClient: HttpClientInterface;
protected constructor(
httpClient: HttpClientInterface
) {
this.httpClient = httpClient;
}
}