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
/
src
/
abstract.ts
8 lines
(7 loc)
•
134 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
/** * Represents an abstract class. *
@typeParam
T Class type. */
export
interface
Abstract
<T>
extends
Function
{
prototype
: T; }