提取公共的Option类型。

This commit is contained in:
徐涛
2024-12-30 16:51:05 +08:00
parent a83af72af6
commit 2c53ec3e12
2 changed files with 5 additions and 5 deletions

4
src/models.ts Normal file
View File

@@ -0,0 +1,4 @@
export type Option = {
label: string;
value: string | number | null;
};