Closed cjuega closed 3 years ago
@cjuega The fix for your specific problem should be available in the 2.6.9 version. Enjoy!
I believe the following is missing in lib/types/index.d.ts
export class TagReference {
constructor (name: string);
readonly name: string;
}
I'm glad of submitting a PR
@zazoomauro could you please release a 2.6.10 version with latest typings? thanks!
@cjuega done
Hey this library is just awesome!
I'm in a serverless environment so I opted for managing the container programmatically (so webpack prunes any file which isn't really needed by my functions). I'll give yml files a try anyway. But this was the easiest setup.
Anyhow, the thing is, I'm trying to replicate something similar to the following example (from the wiki):
I believe the code must look like:
The problem with the code above is that
TagReference
class isn't exported, so I haven't access to it. Is there any other way to achieve the same result without exportingTagReference
?