portfolio/types/index.ts
Ryan Freeman 412927d663
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 2m45s
Add og meta tags
2024-10-14 16:33:27 +01:00

25 lines
409 B
TypeScript

import {ReactNode} from 'react'
export type Article = {
slug: string
title: string
date: string
description: string
}
export type Props = {
className?: string
children?: ReactNode
}
export type Repo = {
name: string
description: string
url: string
stargazerCount: number
forkCount: number
primaryLanguage: {
name: string
color: string
}
}