增加用于承载Harmony颜色比例的数据结构。

This commit is contained in:
徐涛 2024-12-31 17:14:02 +08:00
parent b9d5cd849d
commit d48f007af7

View File

@ -2,3 +2,8 @@ export type Option = {
label: string; label: string;
value: string | number | null; value: string | number | null;
}; };
export type HarmonyColor = {
color: string;
ratio: number;
};