mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-06-06 13:48:51 +08:00
8 lines
204 B
TypeScript
8 lines
204 B
TypeScript
import type { ConfigType } from "../config.ts";
|
|
|
|
export type ConfigClientSocketData = { type: "close" };
|
|
export type ConfigSeverSocketData = { type: "close" } | {
|
|
type: "cfg";
|
|
cfg: ConfigType;
|
|
};
|