core/source/logic/notification_kinds/_abstract.ts

13 lines
289 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);
notify : (parameters, name, data, state, info) => Promise<void>;
};
}