添加 CookieTarget 页面

This commit is contained in:
2024-09-22 14:33:56 +08:00
parent 4c20e47399
commit 75a55c009a
6 changed files with 96 additions and 16 deletions
+13
View File
@@ -4,6 +4,7 @@ export interface TokenResp {
id: number;
name: string;
}
export interface GlobalConf {
platformConf: AllPlatformConf;
siteConf: AllSiteConf;
@@ -111,3 +112,15 @@ export interface NewCookieParam {
export interface DelCookieParam {
cookieId: string
}
export interface NewCookieTargetParam {
platformName: string;
target: string;
cookieId: number;
}
export interface DelCookieTargetParam {
platformName: string;
target: string;
cookieId: number;
}