#ifndef Attachment_H
#define Attachment_H

#include <jsi/jsi.h>

using namespace facebook::jsi;

namespace sharedjsi
{
Function ditto_new_attachment_from_file(Runtime &runtime);
Function ditto_new_attachment_from_bytes(Runtime &runtime);
Function ditto_resolve_attachment(Runtime &runtime);
Function ditto_cancel_resolve_attachment(Runtime &runtime);
Function ditto_free_attachment_handle(Runtime &runtime);
Function ditto_get_complete_attachment_data(Runtime &runtime);
Function ditto_get_complete_attachment_path(Runtime &runtime);
}

#endif /* Attachment_H */
