tshex-cli
Version:
Typescript Hexagonal Architecture CLI
48 lines (26 loc) • 654 B
text/typescript
// Libraries
// Same Layer
// Lower Layers
// Types
// Constants
/**
* @description
* function arguments are Entity
*/
export default abstract class Service
{
[property: string]: unknown;
// public ATTRIBUTES
// protected ATTRIBUTES
// private ATTRIBUTES
// public static ATTRIBUTES
// protected static ATTRIBUTES
// private static ATTRIBUTES
// Constructor, Getters, Setters
// public METHODS
// protected METHODS
// private METHODS
// public static METHODS
// protected static METHODS
// private static METHODS
} //:: class