import axios from "axios"; const SERVER_URL = "http://localhost:4000"; export const getWords = async (): Promise<[...(string[] & { length: 9 })]> => { const words = (await axios.get(`${SERVER_URL}/random-words`)) .data as string[]; if (words.length !== 16) { throw new Error(`Got invalid words ${words} from server`); } return words; };