#ifndef TYPES_H
#define TYPES_H

#include <stdint.h>

struct js;

typedef struct js ant_t;
typedef unsigned long long u64;

typedef int      jshdl_t;
typedef uint64_t jsoff_t;
typedef uint64_t jsval_t;

#endif