Explorar el Código

feat(types): add IBulkShare

vian hace 5 años
padre
commit
9f19651a31
Se han modificado 1 ficheros con 6 adiciones y 0 borrados
  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[];
+}