Removing test junk

This commit is contained in:
2020-02-06 22:07:05 +11:00
parent 62ae9be61a
commit 9420b3fab9
2 changed files with 2 additions and 8 deletions

View File

@ -7,7 +7,4 @@ export const APIRequest = (url:string, body?:object) => {
'Accept': 'application/json'
}
}).then(e => e.json());
}
(globalThis as any)['APIRequest'] = APIRequest;
}

View File

@ -2,7 +2,4 @@ import { APIRequest } from "./APIRequest";
export const sendMail = (name:string, email:string, message:string) => APIRequest('mail/send', {
name, email, message
}).then(e => e.body);
///@ts-ginore
(globalThis as any)['sendMail' as any] = sendMail as any;
}).then(e => e.body);