added certifactions and configurations, util function for constructing image paths

This commit is contained in:
Blake Joynes
2021-05-31 14:48:00 -04:00
parent e390891329
commit b5034bfa9c
11 changed files with 18 additions and 14 deletions

12
src/types/changes.ts Normal file
View File

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