Files
certd/packages/plugins/plugin-lib/src/oss/api.ts
T

13 lines
285 B
TypeScript
Raw Normal View History

2025-04-24 17:27:13 +08:00
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>;
}