update s3Types.d.ts

This commit is contained in:
Diego Imbert
2025-07-08 18:25:48 +02:00
parent db5aba7eab
commit dbf3e8709b
+4 -1
View File
@@ -1,4 +1,7 @@
export type S3Object = {
export type S3Object = S3ObjectURI | S3ObjectRecord;
export type S3ObjectURI = `s3://${string}/${string}`;
export type S3ObjectRecord = {
s3: string;
storage?: string;
};