File upload functionality for own interiors (#39)

This commit is contained in:
Niklas Fondberg
2021-09-13 13:38:53 +02:00
committed by GitHub
parent 0a4be2b081
commit 84bed9a7ce
15 changed files with 2275 additions and 4 deletions
+15
View File
@@ -0,0 +1,15 @@
export interface SignedUploadURLInput {
config: SignedUploadURLInputConfig;
}
export interface SignedUploadURLInputConfig {
contentType: string;
key: string;
}
export interface SignedUploadURL {
url: string;
key: string;
bucket: string;
expires: number;
}
+4
View File
@@ -24,3 +24,7 @@ export interface PaginationResult {
offset: number;
limit: number;
}
export interface IdNumberResult {
id: number;
}