initial commit
This commit is contained in:
20
src/types/certification.d.ts
vendored
Normal file
20
src/types/certification.d.ts
vendored
Normal 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
11
src/types/changes.d.ts
vendored
Normal 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
0
src/types/index.d.ts
vendored
Normal file
Reference in New Issue
Block a user