yacd/src/types.ts
2022-09-10 14:21:58 +08:00

11 lines
267 B
TypeScript

export type ClashAPIConfig = {
baseURL: string;
secret?: string;
// metadata
metaLabel?: string;
};
export type LogsAPIConfig = ClashAPIConfig & { logLevel: string };
export type RuleType = { id?: number; type?: string; payload?: string; proxy?: string };