@matazi/xui
Version:
x-ui api handler
21 lines (20 loc) • 427 B
TypeScript
import { Protocol } from "..";
import { ISetting } from "./ISetting";
export interface IAddInbound {
up: number;
down: number;
total: number;
remark: string;
enable: boolean;
expiryTime: number;
listen: string;
port: number;
protocol: Protocol;
settings: string;
streamSettings: string;
sniffing: string;
}
export interface IAddClient {
id: string;
settings: ISetting;
}