core/source/logic/notification_kinds/_abstract.ts

19 lines
360 B
TypeScript
Raw Normal View History

2023-06-19 13:05:17 +02:00
namespace _heimdall.notification_kinds
2023-06-18 23:29:57 +02:00
{
/**
*/
2023-06-19 13:05:17 +02:00
export type type_notification_kind = {
2023-06-18 23:29:57 +02:00
parameters_schema : (() => _heimdall.helpers.json_schema.type_schema);
normalize_order_node : ((node : any) => any);
2023-06-19 18:40:13 +02:00
notify : (
parameters : any,
name : string,
data : type_check,
state : type_item_state,
info : any
) => Promise<void>;
2023-06-18 23:29:57 +02:00
};
}