import { ERestrictIPType } from "./guard.enum"; export interface IHttpBasicAuth { httpBasicAuthUser: string; httpBasicAuthPass: string; } export interface IRestrictIP { ipList: string; type?: ERestrictIPType; }