Extract the type of a Token.
const token = new Token<string>();const value: ExtractToken<typeof token> = "Hello!"; Copy
const token = new Token<string>();const value: ExtractToken<typeof token> = "Hello!";
This implements https://github.com/typestack/typedi/pull/1127.
Generated using TypeDoc
Extract the type of a Token.