namespace formgen.helpers.file { /** * @todo handle errors */ export function read_text( path : string ) : Promise { return ( fetch(path) .then(x => x.text()) ); } }