server-ts: Port services/setup

This commit is contained in:
Elian Doran
2024-04-03 23:18:39 +03:00
parent 984ce49168
commit 532ed1d3f9
8 changed files with 42 additions and 24 deletions

View File

@@ -3,7 +3,7 @@ export interface CookieJar {
}
export interface ExecOpts {
proxy: "noproxy" | null;
proxy: "noproxy" | string | null;
method: string;
url: string;
paging?: {
@@ -16,5 +16,5 @@ export interface ExecOpts {
password?: string;
},
timeout: number;
body: string;
body?: string | {};
}