### Description ```ts const token = new Token<string>("MY TOKEN"); container.set(token, 123); // no warning ``` ### Proposed solution If it's a token infer the type, same for: ```ts container.set({ id: token, value: 123, // should trigger warning. }); ```