This commit is contained in:
Timi
2026-04-10 14:37:14 +08:00
parent 73496f7768
commit cc3bade990
6 changed files with 36 additions and 18 deletions

View File

@@ -71,10 +71,10 @@ export enum ImageType {
export type KeyValue<V, K = string> = {
key: K;
value: V;
value?: V;
}
export type LabelValue<L, V = string> = {
label: L;
value: V;
value?: V;
}