import IMediaWithThumb from "./IMediaWithTumb";
export default interface IResult {
    title?: string;
    media?: IMediaWithThumb[];
}
