UNPKG

@nu-art/file-upload

Version:

File Uploader - Express & Typescript based backend framework

14 lines 535 B
import { HttpMethod } from '@nu-art/thunderstorm'; export const ApiDef_Assets = { vv1: { getReadSignedUrl: { method: HttpMethod.POST, path: 'v1/assets/get-read-signed-url' }, } }; export const ApiDef_UploadFile = { method: HttpMethod.PUT, path: '' }; export const ApiDef_AssetUploader = { vv1: { getUploadUrl: { method: HttpMethod.POST, path: 'v1/upload/get-url' }, processAssetManually: { method: HttpMethod.GET, path: 'v1/upload/process-asset-manually' }, } }; //# sourceMappingURL=apis.js.map