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