export interface IObjectInfo { key: string; size: number; lastModified: number; etag: string; contentType: string; } export interface IObjectListResult { objects: IObjectInfo[]; commonPrefixes: string[]; isTruncated: boolean; currentPrefix: string; }