/** * API configuration for Xray-Core gRPC API. * * @see https://xtls.github.io/en/config/api.html */ export interface APIConfig { /** Tag for the API inbound. Must match an inbound tag using dokodemo-door. */ tag?: string; /** Listen address for the API (e.g. "127.0.0.1:8080"). */ listen?: string; /** List of API services to enable. */ services?: APIService[]; } export type APIService = 'HandlerService' | 'LoggerService' | 'StatsService' | 'RoutingService' | 'ReflectionService'; //# sourceMappingURL=api.d.ts.map