fix: gpu selector by cluster

This commit is contained in:
jialin
2025-09-16 11:26:17 +08:00
parent 207c90e26c
commit 553ec724c2
40 changed files with 1106 additions and 1233 deletions
+4 -4
View File
@@ -24,18 +24,18 @@ declare namespace Global {
avatar_url?: string;
}
interface BaseListItem<T> {
type BaseListItem<T, U extends Record<string, any>> = {
key: string;
locale?: boolean;
value: T;
}
} & U;
interface BaseOption<T> {
type BaseOption<T, U extends Record<string, any>> = {
label: string;
locale?: boolean;
value: T;
meta?: Record<string, any>;
}
} & U;
interface HintOptions {
label: string;