import type { HttpClient } from '@services' import type { ApiError, Response } from '@types' export type GetCalendarExportsInput = { houseId: string } const getCalendarExports = (http: HttpClient) => { return { query: ( input: GetCalendarExportsInput, ): Promise> => { return http.get(`v1/user/houses/${input.houseId}/calendar_exports`) }, } } export default getCalendarExports