namespace _munin { /** */ export type type_labels = { head : string; title : string; time : string; location : string; }; /** */ export type type_event = { title : string; begin : lib_plankton.pit.type_datetime, end : (null | lib_plankton.pit.type_datetime), location : (null | string); }; /** */ export type type_source = { fetch : ( ( ) => Promise> ); }; /** */ export type type_target = { interval : Array; send : ( ( labels : type_labels, event : type_event ) => Promise ); }; }