Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error registering a generic interface/class #206

Open
brendan-rice opened this issue Aug 15, 2022 · 0 comments
Open

Error registering a generic interface/class #206

brendan-rice opened this issue Aug 15, 2022 · 0 comments
Assignees

Comments

@brendan-rice
Copy link

Describe the bug

I have a generic cache class (see below).

import { injectable } from 'tsyringe';
import { Cache } from '../contract/cache';

@injectable()
export class CacheImpl<DataT> implements Cache<DataT> {
  private data = {} as Partial<DataT>;

  getValue<K extends keyof DataT>(key: K): DataT[K] {
    return this.data[key];
  }

  setValue<K extends keyof DataT>(key: K, value: DataT[K]): void {
    this.data[key] = value;
  }
}

Here is how I try to register it:

container.register<Cache<MyDto>>(
  TYPES.ModuleAccessDetailsCache,
  {
    useClass: CacheImpl<MyDto>
  },
  {
    lifecycle: Lifecycle.Singleton
  }
);

I get the following errors when I try to compile

image

Are generic types supported and how can I register them?

To Reproduce

  1. Create a generic class/interface
  2. Try to register it

Expected behavior
The registration should be successful

Version:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants