/** * Interface for Action * * @author Björn Hase * @license http://opensource.org/licenses/MIT The MIT License * @link https://git.node001.net/HerrHase/super-hog.git * */ interface ActionInterface { async run(): any } export default ActionInterface