mobilizon/js/src/types/collection.ts

14 lines
222 B
TypeScript

import { Paginate } from '@/types/paginate';
export interface ICollection {
id: string;
title: string;
resources: Paginate<IResource>;
}
export interface IResource {
id: string;
title: string;
url: string;
}