7 lines
151 B
TypeScript
7 lines
151 B
TypeScript
import { AppListItemType } from '@/types/app';
|
|
|
|
export type AppListResponse = {
|
|
myApps: AppListItemType[];
|
|
myCollectionApps: AppListItemType[];
|
|
};
|