mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-26 04:32:50 +00:00
7 lines
165 B
TypeScript
7 lines
165 B
TypeScript
import { ModelListItemType } from '@/types/model';
|
|
|
|
export type ModelListResponse = {
|
|
myModels: ModelListItemType[];
|
|
myCollectionModels: ModelListItemType[];
|
|
};
|