initial commit

This commit is contained in:
Blake Joynes
2021-05-15 00:22:10 -04:00
commit d800f56ee6
20 changed files with 697 additions and 0 deletions

20
src/types/certification.d.ts vendored Normal file
View File

@@ -0,0 +1,20 @@
export interface Certifications {
certifications: {
US: Certification[],
CA: Certification[],
DE: Certification[],
GB: Certification[],
AU: Certification[],
BR: Certification[],
FR: Certification[],
NZ: Certification[],
IN: Certification[],
}
}
export interface Certification {
certification: string;
meaning: string;
order: number;
}

11
src/types/changes.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
export interface Changes{
results: Change[];
page: number;
total_pages: nubmer;
total_results: number;
}
export interface Change {
id: number;
adult: boolean | undefined;
}

0
src/types/index.d.ts vendored Normal file
View File