cloudydeno / deno-aws_api

From-scratch Typescript client for accessing AWS APIs
https://deno.land/x/aws_api
60 stars 3 forks source link

Add makeNew() method to ApiFactory #9

Closed danopia closed 3 years ago

danopia commented 3 years ago

This was defined before, but not on the exported interface

Essentially this:

-  const factory = new ApiFactory();
-  const sqs = new SQS(factory);
+  const sqs = new ApiFactory().makeNew(SQS);