46ca343aed
for #713
11 lines
267 B
TypeScript
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 };
|