mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-21 21:33:02 +01:00
* new PR tasks * add homebox to know words * formatting * bump deps * generate db models * ts errors * drop id * fix accessor * drop unused time field * change CI * add expected error * add type check * resolve serveral type errors * hoise in CI
8 lines
174 B
TypeScript
8 lines
174 B
TypeScript
import { BaseAPI, route } from "../base";
|
|
|
|
export class ReportsAPI extends BaseAPI {
|
|
billOfMaterialsURL(): string {
|
|
return route("/reporting/bill-of-materials");
|
|
}
|
|
}
|