mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
296 B
TypeScript
13 lines
296 B
TypeScript
import { sign, Request } from "hyper-aws4";
|
|
|
|
const signOption: Request = {
|
|
url: "https://us-west-1.hyper.sh/version",
|
|
method: "GET",
|
|
credential: {
|
|
accessKey: "6DPLADBPWYXDUVXLX34EJXBL",
|
|
secretKey: "2ldD1Yz0nzATl9vvagBwYTjglXBjVOWU8gV8aMm5"
|
|
}
|
|
};
|
|
|
|
sign(signOption);
|