prettify, sorry for the big ass commit

This commit is contained in:
Olivier Gagnon
2021-09-04 19:09:30 -04:00
parent 3d7cdb4ef9
commit a18bdd6afc
554 changed files with 91615 additions and 66138 deletions
+15 -15
View File
@@ -41,8 +41,8 @@ export interface ISelfLoading {
* and an optional message
*/
export interface IReturnStatus {
res: boolean;
msg?: string;
res: boolean;
msg?: string;
}
/**
@@ -51,18 +51,18 @@ export interface IReturnStatus {
* It is up to the implementor to ensure max > min.
*/
export interface IMinMaxRange {
/**
* Value by which the bounds are to be divided for the final range
*/
divisor?: number;
/**
* The maximum bound of the range.
*/
max: number;
/**
* Value by which the bounds are to be divided for the final range
*/
divisor?: number;
/**
* The minimum bound of the range.
*/
min: number;
/**
* The maximum bound of the range.
*/
max: number;
/**
* The minimum bound of the range.
*/
min: number;
}