UNPKG

@kweli/cs-rest

Version:

Simple authentication and REST calls for OpenText Content Server.

10 lines (9 loc) 264 B
import { AxiosInstance } from "axios"; export type CSRestOptions = { username?: string; password?: string; otcsticket?: string; baseUrl: string; }; declare const axiosFactory: (options: CSRestOptions) => AxiosInstance; export default axiosFactory;