mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-23 00:55:43 +00:00
ef9a7cd811
Former-commit-id: 02ce52dbe3
11 lines
382 B
TypeScript
11 lines
382 B
TypeScript
import { BaseAPI, route } from "../base";
|
|
import { ItemSummary } from "../types/data-contracts";
|
|
import { PaginationResult } from "../types/non-generated";
|
|
|
|
export class AssetsApi extends BaseAPI {
|
|
async get(id: string, page = 1, pageSize = 50) {
|
|
return await this.http.get<PaginationResult<ItemSummary>>({
|
|
url: route(`/assets/${id}`, { page, pageSize }),
|
|
});
|
|
}
|
|
}
|