mirror of
https://github.com/makeplane/plane.git
synced 2025-12-24 23:59:40 +01:00
* chore: epics type added to package * chore: epic analytics helper function added * chore: sub issue analytics mutation improvement
16 lines
365 B
TypeScript
16 lines
365 B
TypeScript
import { TEpicAnalyticsGroup } from "@plane/types";
|
|
|
|
export const updateEpicAnalytics = () => {
|
|
const updateAnalytics = (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
epicId: string,
|
|
data: {
|
|
incrementStateGroupCount?: TEpicAnalyticsGroup;
|
|
decrementStateGroupCount?: TEpicAnalyticsGroup;
|
|
}
|
|
) => {};
|
|
|
|
return { updateAnalytics };
|
|
};
|