@sodacore/cli
Version:
Sodacore CLI is a plugin that offers CLI functionality within the framework.
15 lines • 319 B
TypeScript
export type IConfigConnectionItem = {
host: string;
port: number;
pass: string;
name: string;
default: boolean;
};
export type IConfigCli = {
connections: IConfigConnectionItem[];
};
export type ISocketData = {
uid: string;
authenticated?: boolean;
};
//# sourceMappingURL=types.d.ts.map