initial commit
This commit is contained in:
commit
83337e0574
14 changed files with 2825 additions and 0 deletions
28
src/types.d.ts
vendored
Normal file
28
src/types.d.ts
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
export interface Quote {
|
||||
id: number;
|
||||
text: string;
|
||||
author: string;
|
||||
}
|
||||
|
||||
export interface Translation {
|
||||
id: number;
|
||||
lang: string;
|
||||
tableName: string;
|
||||
}
|
||||
|
||||
export interface UnsplashImage {
|
||||
id: string;
|
||||
description: string;
|
||||
color: string;
|
||||
blurHash: string;
|
||||
url: string;
|
||||
originUrl: string;
|
||||
authorName: string;
|
||||
authorBio: string;
|
||||
authorLocation: string;
|
||||
authorTotalLikes: number;
|
||||
authorTotalPhotos: number;
|
||||
authorIsForHire: boolean;
|
||||
authorProfileImageUrl: string;
|
||||
authorUrl: string;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue