Alpha Release 0.4.1 #134

Merged
niggl merged 16 commits from dev into main 2021-01-30 15:59:54 +00:00
Showing only changes of commit e44cc4c4cb - Show all commits

View File

@ -0,0 +1,13 @@
import { ResponseObjectType } from '../enums/ResponseObjectType';
/**
* Defines the repsonse interface.
* This forces all response classes to implement the interfaces properties.
*/
export interface IResponse {
/**
* The responseType.
* This contains the type of class/entity this response contains.
*/
responseType: ResponseObjectType;
}