Adds a Certifications section

This commit is contained in:
Nate Goldsborough
2022-11-01 00:36:23 -05:00
parent cdb3542844
commit 9e34239877
5 changed files with 123 additions and 0 deletions

10
types/index.d.ts vendored
View File

@@ -214,6 +214,11 @@ export interface Experience {
to?: string;
companyLink?: string;
}
export interface Certifications {
body?: string;
name?: string;
year?: string;
}
export interface Education {
institution?: string;
@@ -252,6 +257,11 @@ export interface Config {
*/
experiences?: Array<Experience>;
/**
* Certifications list
*/
certifications?: Array<Certifications>;
/**
* Education list
*/