mirror of https://github.com/jkjoy/sunpeiwen.git
12 lines
319 B
TypeScript
12 lines
319 B
TypeScript
/**
|
|
* getBucketInventory
|
|
* @param {String} bucketName - bucket name
|
|
* @param {String} inventoryId
|
|
* @param {Object} options
|
|
*/
|
|
export declare function getBucketInventory(this: any, bucketName: string, inventoryId: string, options?: any): Promise<{
|
|
status: any;
|
|
res: any;
|
|
inventory: any;
|
|
}>;
|