alepha@docs:~/docs/reference/primitives$
cat $inject.md
1 min read

#$inject

#Import

typescript
1import { $inject } from "alepha";

#Overview

Get the instance of the specified type from the context.

ts
1class A { }2class B {3  a = $inject(A);4}