8 lines
174 B
TypeScript
8 lines
174 B
TypeScript
import type { PlApiBaseClient } from '@/client-base';
|
|
|
|
const utils = (client: PlApiBaseClient) => ({
|
|
paginatedGet: client.paginatedGet.bind(client),
|
|
});
|
|
|
|
export { utils };
|