chore: mv libs

This commit is contained in:
xiaojunnuo
2024-07-19 17:22:54 +08:00
parent a3be0a1618
commit 54a27c1840
32 changed files with 2 additions and 2 deletions
+20
View File
@@ -0,0 +1,20 @@
export declare class SigHttpRequest {
method: string;
host: string;
uri: string;
query: any;
headers: any;
body: string;
constructor(method: any, url: any, headers: any, body: any);
}
export declare class Signer {
Key: string;
Secret: string;
constructor(Key: any, Secret: any);
Sign(r: any): {
hostname: any;
path: string;
method: any;
headers: any;
};
}