File upload functionality for own interiors (#39)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -24,3 +24,7 @@ export interface PaginationResult {
|
||||
offset: number;
|
||||
limit: number;
|
||||
}
|
||||
|
||||
export interface IdNumberResult {
|
||||
id: number;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user