Przeglądaj źródła

feat(types): add IBulkShare

vian 5 lat temu
rodzic
commit
9f19651a31
1 zmienionych plików z 6 dodań i 0 usunięć
  1. 6 0
      types/src/interface/share.ts

+ 6 - 0
types/src/interface/share.ts

@@ -55,3 +55,9 @@ export interface IDelShare {
   filter: { projectID?: string; compilationID?: string };
   type: ShareType;
 }
+
+export interface IBulkShare {
+  update?: IUpdateShare[];
+  create?: ICreatShare[];
+  remove?: IDelShare[];
+}