Nymbo/zero-gpu-spaces
0
1export interface SpaceProps {2 name: string;3 id: string;4 title: string;5 emoji?: string;6 runtime: any;7 shortDescription?: string;8 likes: number;9 authorData: Author;10 colorFrom: string;11 colorTo: string;12 createdAt: string;13}14 15interface Author {16 name: string;17 username: string;18 fullName?: string;19 avatarUrl: string;20}