fix: update interfaces

This commit is contained in:
jdegand
2024-01-10 20:18:05 -05:00
parent c8b7c5d4a6
commit ff019acc57
2 changed files with 19 additions and 3 deletions

View File

@@ -5,9 +5,13 @@ import { Photo } from './photo.model';
export interface FlickrAPIResponse {
photos: {
page: number;
pages: number;
perpage: number;
total: number;
photo: Photo[];
};
stat: string;
}
@Injectable({ providedIn: 'root' })