| 1 | // 设置cookie参数 |
| 2 | export interface ICookieParams { |
| 3 | // 创建时是否设置cookies |
| 4 | cookies: Electron.Cookie[]; |
| 5 | } |
| 6 | |
| 7 | export interface ICreateBrowserWindowParams { |
| 8 | // webview 的id |
| 9 | webViewId: number; |
| 10 | // cookie参数,这个参数不为空会在创建的时候设置cookie |
| 11 | cookieParams?: ICookieParams; |
| 12 | } |
| 13 |