import {apiClient} from "../../../../api/apiClient.ts"; import type {PageResponse} from "../../../../type/pageResponse.ts"; import type {SearchParams} from "../../../../type/searchParams.ts"; import type {BoardListItem} from "../type/board.types.ts"; export async function fetchBoardList(params: SearchParams) { return apiClient.get>('/cop/bbs/list.do', params); }