ethers.js/misc/admin/lib/cmds/upload-docs.d.ts
2020-12-08 01:38:32 -05:00

5 lines
273 B
TypeScript

/// <reference types="node" />
import AWS from 'aws-sdk';
export declare function getKeys(s3: AWS.S3, bucket: string): Promise<Record<string, string>>;
export declare function putObject(s3: AWS.S3, bucket: string, name: string, content: string | Buffer): Promise<unknown>;