UNPKG
@hexadrop/types
Version:
beta (2.0.0-beta.4)
latest (2.0.0)
2.0.0
2.0.0-beta.4
2.0.0-beta.3
2.0.0-beta.2
2.0.0-beta.1
2.0.0-beta.0
1.0.3
1.0.2
1.0.1
1.0.0
1.0.0-beta.3
1.0.0-beta.2
1.0.0-beta.1
1.0.0-beta.0
Hexagonal architecture utils library
github.com/hexadrop/hexadrop
hexadrop/hexadrop
@hexadrop/types
/
dist
/
instance.d.ts
8 lines
(6 loc)
•
132 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/** * Represents an instance of a
class
. * @typeParam T Class
type
. */
type
Instance<T> =
object
& T; export
type
{ Instance };