This commit is contained in:
felinae98
2022-08-10 21:24:58 +08:00
parent ea928bf3fc
commit 014ec92ff9
9 changed files with 65 additions and 22 deletions
+12
View File
@@ -58,3 +58,15 @@ export interface TimeWeightConfig {
end_time: string;
weight: number;
}
export interface WeightConfig {
default: number;
time_config: TimeWeightConfig[];
}
export interface PlatformWeightConfigResp {
target: string;
target_name: string;
platform_name: string;
weight: WeightConfig;
}