import { httpGet } from './mock-http-interface'; type TResult = {"Arnie Quote" : string} | { "FAILURE" : string} export const getArnieQuotes = async (urls : string[]) : Promise => { // TODO: Implement this function. return []; };