mirror of
https://github.com/certd/certd.git
synced 2026-04-21 10:27:25 +08:00
13 lines
285 B
TypeScript
13 lines
285 B
TypeScript
|
|
export type OssClientDeleteReq = {
|
||
|
|
key: string;
|
||
|
|
beforeDays?: number;
|
||
|
|
};
|
||
|
|
|
||
|
|
export interface IOssClient {
|
||
|
|
upload(key: string, content: Buffer | string): Promise<void>;
|
||
|
|
|
||
|
|
download(key: string, savePath?: string): Promise<void>;
|
||
|
|
|
||
|
|
delete(opts: OssClientDeleteReq): Promise<void>;
|
||
|
|
}
|