You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
472 B

export * from './keyvalue';
export * from './signer';
export * from './utils.http';
export * from './utils.lang';
export * from './utils';
interface IKV {
[key: string]: any;
}
export declare function sign(options: {
secretId: string;
secretKey: string;
method: string;
url: string;
headers: IKV;
params: IKV;
timestamp: number;
withSignedParams?: boolean;
}): {
authorization: string;
timestamp: number;
multipart: any;
};