WNomunomu 2 лет назад
Родитель
Сommit
1a459a1dec
1 измененных файлов с 7 добавлено и 0 удалено
  1. 7 0
      apps/app/src/server/service/preNotify.ts

+ 7 - 0
apps/app/src/server/service/preNotify.ts

@@ -0,0 +1,7 @@
+import type { IUser } from '@growi/core';
+
+type PreNotifyProps = {
+  notificationTargetUsers?: IUser[],
+}
+
+export type PreNotify = (props: PreNotifyProps) => Promise<void>;