/** * @author Sebastian Cuy * @author Jan G. Wieners * @author Daniel de Oliveira */ export interface Reader { /** * @returns {Promise} resolves to content | rejects to msgWithParams in case of an error */ go(): Promise; }