This commit is contained in:
felinae98
2021-10-01 16:17:22 +08:00
parent cdeea09522
commit 5d9872af29
11 changed files with 339 additions and 19 deletions
+9 -1
View File
@@ -34,7 +34,7 @@ export interface AllPlatformConf {
[idx: string]: PlatformConfig;
}
interface CategoryConfig {
export interface CategoryConfig {
[idx: number]: string
}
@@ -66,3 +66,11 @@ export interface SubscribeResp {
export interface TargetNameResp {
targetName: string
}
export interface CreateSubscribeReq {
platformName: string,
targetName: string,
target: string,
categories: Array<string>,
tags: Array<string>
}