mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-21 13:23:14 +01:00
* dummy commit * cleanup workflows * setup and run eslint * add linter to CI * use eslint for formatting * reorder rules * drop editor config
18 lines
294 B
TypeScript
18 lines
294 B
TypeScript
import { Requests } from "../../requests";
|
|
// <
|
|
// TGetResult,
|
|
// TPostData,
|
|
// TPostResult,
|
|
// TPutData = TPostData,
|
|
// TPutResult = TPostResult,
|
|
// TDeleteResult = void
|
|
// >
|
|
|
|
export class BaseAPI {
|
|
http: Requests;
|
|
|
|
constructor(requests: Requests) {
|
|
this.http = requests;
|
|
}
|
|
}
|