UNPKG

@sodacore/cli

Version:

Sodacore CLI is a plugin that offers CLI functionality within the framework.

18 lines 363 B
export type IConfigConnectionItem = { host: string; port: number; pass: string; }; export type IConfigCli = { connections: IConfigConnectionItem[]; }; export type IConfig = { host?: string; port?: number; pass?: string; }; export type ISocketData = { uid: string; authenticated?: boolean; }; //# sourceMappingURL=types.d.ts.map