We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2919a44 commit 9b99788Copy full SHA for 9b99788
README.md
@@ -1,5 +1,7 @@
1
# deno_sqs
2
3
+[](https://doc.deno.land/https/deno.land/x/sqs/mod.ts)
4
+
5
Amazon SQS for Deno
6
7
> ⚠️ This project is work in progress. Expect breaking changes.
src/error.ts
@@ -1,5 +1,5 @@
export class SQSError extends Error {
- name = "SQSError";
+ name: "SQSError" = "SQSError";
constructor(message: string, public response: string) {
super(message);
}
0 commit comments