Procházet zdrojové kódy

create prenotify types

WNomunomu před 2 roky
rodič
revize
1a459a1dec
1 změnil soubory, kde provedl 7 přidání a 0 odebrání
  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>;