@stompbox/tape-delay 1.0.12 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -157,5 +157,5 @@ export declare class TapeDelay<T extends Entries> {
|
|
|
157
157
|
private container;
|
|
158
158
|
instance: <E extends keyof T>(entryName: E) => EntryType<T[E]>;
|
|
159
159
|
}
|
|
160
|
-
type Keys<T> = T extends TapeDelay<infer
|
|
160
|
+
type Keys<T> = T extends TapeDelay<infer ContainerEntries> ? keyof ContainerEntries : never;
|
|
161
161
|
export declare const inject: <ContainerType>(entryKey: Keys<ContainerType>) => MethodDecorator & ParameterDecorator & PropertyDecorator;
|