mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-22 08:35:43 +00:00
fix type definition
This commit is contained in:
parent
9b6db67d38
commit
cb01595180
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
import { BaseAPI, route } from "./base";
|
import { BaseAPI, route } from "./base";
|
||||||
import { ApiSummary, LoginForm, TokenResponse, UserRegistration } from "./types/data-contracts";
|
import { APISummary, LoginForm, TokenResponse, UserRegistration } from "./types/data-contracts";
|
||||||
|
|
||||||
export type StatusResult = {
|
export type StatusResult = {
|
||||||
health: boolean;
|
health: boolean;
|
||||||
|
@ -10,7 +10,7 @@ export type StatusResult = {
|
||||||
|
|
||||||
export class PublicApi extends BaseAPI {
|
export class PublicApi extends BaseAPI {
|
||||||
public status() {
|
public status() {
|
||||||
return this.http.get<ApiSummary>({ url: route("/status") });
|
return this.http.get<APISummary>({ url: route("/status") });
|
||||||
}
|
}
|
||||||
|
|
||||||
public login(username: string, password: string, stayLoggedIn = false) {
|
public login(username: string, password: string, stayLoggedIn = false) {
|
||||||
|
|
Loading…
Reference in a new issue