enzostvs's picture
enzostvs HF staff
add sort
92c8d86
raw
history blame
341 Bytes
export interface SpaceProps {
name: string;
id: string;
title: string;
emoji?: string;
runtime: any;
shortDescription?: string;
likes: number;
authorData: Author;
colorFrom: string;
colorTo: string;
createdAt: string;
}
interface Author {
name: string;
username: string;
fullName?: string;
avatarUrl: string;
}