Skip to content

Instantly share code, notes, and snippets.

@TaylorBeeston
Last active July 17, 2020 01:04
Show Gist options
  • Save TaylorBeeston/002037c73f4a0151d5980343fade34f9 to your computer and use it in GitHub Desktop.
Save TaylorBeeston/002037c73f4a0151d5980343fade34f9 to your computer and use it in GitHub Desktop.
/*
* 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