alsaze 3d975d6884
All checks were successful
Deploy / build (push) Successful in 49s
Initial
2025-11-19 20:49:25 +03:00

8 lines
171 B
TypeScript

import { httpClient } from '../httpClient'
export const getPosts = (search: string) =>
httpClient<Posts>('/api/posts', {
method: 'GET',
query: { search },
})