Browse Source

feat(types): add IBulkShare

vian 5 years atrás
parent
commit
9f19651a31
1 changed files with 6 additions and 0 deletions
  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[];
+}