MIRROR: javascript for 馃悳's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at type-hints-typescript 13 lines 259 B view raw
1#ifndef ANT_FS_MODULE_H 2#define ANT_FS_MODULE_H 3 4#include "types.h" 5 6ant_value_t fs_library(ant_t *js); 7ant_value_t fs_promises_library(ant_t *js); 8ant_value_t fs_constants_library(ant_t *js); 9 10int has_pending_fs_ops(void); 11void init_fs_module(void); 12 13#endif