mirror of
https://github.com/magnum-opus-tender-hack/frontend.git
synced 2024-11-23 00:36:36 +03:00
10 lines
194 B
TypeScript
10 lines
194 B
TypeScript
|
import { fetcher } from "./fetch";
|
||
|
|
||
|
|
||
|
export default async (word: string) => {
|
||
|
const data = await fetcher.post('/autocomplete_schema', {
|
||
|
content: word
|
||
|
});
|
||
|
return data.data;
|
||
|
}
|