24 lines
358 B
TypeScript
24 lines
358 B
TypeScript
export interface Project {
|
|
id: string
|
|
name: string
|
|
role: string
|
|
description: string
|
|
highlights: string[]
|
|
stack: string[]
|
|
website: string | null
|
|
github: string | null
|
|
featured: boolean
|
|
}
|
|
|
|
export interface StackCategory {
|
|
id: string
|
|
title: string
|
|
items: string[]
|
|
}
|
|
|
|
export interface User {
|
|
id: string
|
|
email: string
|
|
name: string
|
|
}
|