@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
13 lines • 359 B
TypeScript
import { PresignedURLMethodEnum } from './PresignedURLMethodEnum';
/** Presigned URL */
export interface PresignedURL {
/** Presigned URL method */
method: PresignedURLMethodEnum;
/** Signed headers */
signedHeaders: {
[key: string]: string;
};
/** Presigned URL */
url: string;
}
//# sourceMappingURL=PresignedURL.d.ts.map