munin/source/types.ts
Christian Fraß a975fa98a0 [ini]
2025-04-24 22:48:05 +00:00

30 lines
402 B
TypeScript

namespace _lixer_event_reminder
{
/**
*/
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<Array<type_event>>);
};
/**
*/
export type type_target = {
chat_id : int;
interval : Array<int>;
};
}