UNPKG

@kweli/cs-rest

Version:

Simple authentication and REST calls for OpenText Content Server.

16 lines (11 loc) 247 B
import type Session from "../Session"; class ServiceAbstract { protected _session: Session; constructor(session: Session) { this._session = session; } get session() { return this._session; } } export default ServiceAbstract;