enzostvs's picture
enzostvs HF staff
initial commit
b10df03
raw
history blame
321 Bytes
export interface SpaceProps {
name: string;
id: string;
title: string;
emoji?: string;
runtime: any;
shortDescription?: string;
likes?: number;
authorData: Author;
colorFrom: string;
colorTo: string;
}
interface Author {
name: string;
username: string;
fullName?: string;
avatarUrl: string;
}