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