Last active
July 17, 2020 01:04
-
-
Save TaylorBeeston/002037c73f4a0151d5980343fade34f9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Below are the type definitions | |
* I used to store the data that | |
* makes up these skill pages! | |
*/ | |
export type SkillStats = { | |
years: number | string; | |
used: string; | |
likes: string; | |
dislikes: string; | |
}; | |
export type Skill = { | |
id: string; | |
name: string; | |
icon: string; | |
quote: { | |
quote: string; | |
author?: string; | |
}; | |
description: string; | |
stats: SkillStats; | |
gist?: string; | |
}; | |
export type SkillCategory = { | |
title: string; | |
skills: Skill[]; | |
}; | |
export type CategorizedSkills = SkillCategory[]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment