#ifndef IO_H
#define IO_H

#include <jsi/jsi.h>

using namespace facebook::jsi;

namespace sharedjsi
{
Function readFile(Runtime &runtime);
Function copyFile(Runtime &runtime);
Function createDirectory(Runtime &runtime, String &defaultDirPath);
}

#endif /* IO_H */
