export const media = async (title: string, redirect = true): Promise<wikiMediaResult> => {
    try {
        const path = 'page/media-list/' + title.replace(" ", "_");
        const response = await makeRestRequest(path, redirect);
        return response;