15 lines
270 B
TypeScript
15 lines
270 B
TypeScript
|
|
export interface IObjectInfo {
|
||
|
|
key: string;
|
||
|
|
size: number;
|
||
|
|
lastModified: number;
|
||
|
|
etag: string;
|
||
|
|
contentType: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface IObjectListResult {
|
||
|
|
objects: IObjectInfo[];
|
||
|
|
commonPrefixes: string[];
|
||
|
|
isTruncated: boolean;
|
||
|
|
currentPrefix: string;
|
||
|
|
}
|