#ifndef TYPES_H
#define TYPES_H

#include <stdint.h>
#include <stddef.h>

struct js;

typedef struct js ant_t;
typedef unsigned long long u64;

typedef size_t   jshdl_t;
typedef uint64_t jsoff_t;
typedef uint64_t jsval_t;

#endif