diff options
Diffstat (limited to 'src/ts/types')
| -rw-r--r-- | src/ts/types/app.ts | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/ts/types/app.ts b/src/ts/types/app.ts index b5707a2..6f9bbce 100644 --- a/src/ts/types/app.ts +++ b/src/ts/types/app.ts @@ -89,11 +89,28 @@ export type Meta = { updatedOn: string; }; +export type ProjectMeta = Meta & { + license: string; + repos?: { + github?: string; + gitlab?: string; + }; + technologies?: string[]; +}; + export type PageInfo = { endCursor: string; hasNextPage: boolean; }; +export type Project = { + cover: string; + id: string; + intro: string; + meta: ProjectMeta; + slug: string; +}; + export type Slug = { slug: string; }; |
