Skip to content

Commit

Permalink
Revert unintentional change.
Browse files Browse the repository at this point in the history
  • Loading branch information
kburov-sc committed Sep 9, 2024
1 parent 5b63805 commit f67cf80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Container, ContainerToken } from "./Container";

export type AsTuple<T> = T extends readonly any[] ? T : never;
type AsTuple<T> = T extends readonly any[] ? T : never;

type CorrespondingService<Services, Token extends ValidTokens<Services>> = Token extends ContainerToken
? Container<Services>
Expand Down

0 comments on commit f67cf80

Please sign in to comment.