Переглянути джерело

feat(types): add IBulkShare

vian 5 роки тому
батько
коміт
9f19651a31
1 змінених файлів з 6 додано та 0 видалено
  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 };
   filter: { projectID?: string; compilationID?: string };
   type: ShareType;
   type: ShareType;
 }
 }
+
+export interface IBulkShare {
+  update?: IUpdateShare[];
+  create?: ICreatShare[];
+  remove?: IDelShare[];
+}