mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-11 19:22:31 +08:00
20 lines
364 B
TypeScript
20 lines
364 B
TypeScript
![]() |
export interface CookieJar {
|
||
|
header?: string;
|
||
|
}
|
||
|
|
||
|
export interface ExecOpts {
|
||
|
proxy: "noproxy" | null;
|
||
|
method: string;
|
||
|
url: string;
|
||
|
paging?: {
|
||
|
pageCount: number;
|
||
|
pageIndex: number;
|
||
|
requestId: string;
|
||
|
};
|
||
|
cookieJar?: CookieJar;
|
||
|
auth?: {
|
||
|
password?: string;
|
||
|
},
|
||
|
timeout: number;
|
||
|
body: string;
|
||
|
}
|