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 10 lines 159 B view raw
1#ifndef FETCH_H 2#define FETCH_H 3 4#include "types.h" 5 6void init_fetch_module(void); 7int has_pending_fetches(void); 8ant_value_t ant_fetch(ant_params_t); 9 10#endif