forked from mirrors/homebox
bd321af29f
* 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
7 lines
174 B
TypeScript
7 lines
174 B
TypeScript
import { BaseAPI, route } from "../base";
|
|
|
|
export class ReportsAPI extends BaseAPI {
|
|
billOfMaterialsURL(): string {
|
|
return route("/reporting/bill-of-materials");
|
|
}
|
|
}
|