10 lines
294 B
TypeScript
10 lines
294 B
TypeScript
import { ALiYunInstance } from './service/ali/Ali';
|
|
declare class ALiYunSDK {
|
|
aliMap: Record<string, ALiYunInstance>;
|
|
constructor();
|
|
getInstance(accessKey: string, accessSecret: string): ALiYunInstance;
|
|
}
|
|
declare const SDK: ALiYunSDK;
|
|
export default SDK;
|
|
export { ALiYunInstance };
|