tickethead-sdk
Version:
SDK for the Tickethead API
24 lines • 523 B
TypeScript
export interface FileData {
filename: string;
content: Buffer;
}
export interface UploadProfileImageResponse {
url: string;
}
export interface UploadImageResponse {
url: string;
}
export interface UploadVideoResponse {
url: string;
}
export interface UploadEventImageData {
image1x1: FileData;
image4x3: FileData;
image16x9: FileData;
}
export interface UploadEventImageResponse {
file1x1Url: string;
file4x3Url: string;
file16x9Url: string;
}
//# sourceMappingURL=types.d.ts.map