Files
objectstorage/ts_interfaces/data/object.ts
T

15 lines
270 B
TypeScript
Raw Normal View History

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