unifi-client
Version:
NodeJs client for Unifi products (https://www.ui.com/)
30 lines (29 loc) • 816 B
TypeScript
import { Controller } from './Controller';
import { IBuildUrlParams } from './interfaces';
export * from './IController';
export * from './IControllerProps';
export * from './interfaces';
export * from './UnifiAuth';
export * from './Clients';
export * from './commons';
export * from './Devices';
export * from './Errors';
export * from './Firewall';
export * from './Hotspot';
export * from './Networks';
export * from './Sites';
export * from './Stats';
export * from './User';
export * from './WebSockets';
export { Controller };
export default Controller;
declare module 'axios' {
interface AxiosRequestConfig extends IBuildUrlParams {
urlParams?: Record<string, string>;
/**
* default false
*/
authenticationRequest?: boolean;
retryAuth?: boolean;
}
}