stamp icon indicating copy to clipboard operation
stamp copied to clipboard

Stamps - better OOP model

Results 12 stamp issues
Sort by recently updated
recently updated
newest added

In order to offer users proper Typescript support, two options are available: 1. hand crafted `.d.ts` files for each published package 2. porting current `.js` source code to Typescript (with...

Now that this is no longer RFC I've moved this issue from [#356 in stampit](https://github.com/stampit-org/stampit/issues/356) to here. The new types will differentiate a generic `Stamp` from a `Stamp` that has...

Greetings, stamp people. I've been messing around with stamps for a relatively small project and it has been a fantastic development experience. That said, I'm interested on how to implement...

I have a stamp with a method that uses `get` style function: ``` methods: { /** * @returns {string} */ get label() { return this.state.label.target }, ... ``` I also...

Should the npm package be [deprecated](https://docs.npmjs.com/deprecating-and-undeprecating-packages-or-package-versions)? If yes, the following files should include the reason why it is deprecated. - `packages/named/index.js` - `packages/named/README.md`

Current implementation of `@stamp/core/mergeOne()` does not fully check if its first parameter `dst` is `undefined`. If the second parameter `src` is an object, `dst` is never checked and assumed to...

Howdy, I'm running into some problems with stubbing methods on stamps that have been privatized. In particular, because referencing the injected method always references the PROXY function, there's no way...