Update to retrieve the jumps page by page.

This commit is contained in:
Sébastien André
2022-05-08 16:42:54 +02:00
parent 9e18b7708a
commit bc1edca944
5 changed files with 98 additions and 59 deletions

View File

@@ -0,0 +1,19 @@
import { JumpResp, Jump } from "./jump";
export class JumpListResp {
constructor(data: any) {
Object.assign(this, data);
}
public count: number;
public rows: Array<JumpResp>;
}
export class JumpList {
constructor(data: any) {
Object.assign(this, data);
}
public count: number;
public rows: Array<Jump>;
}