mirror of
https://github.com/makeplane/plane.git
synced 2025-12-21 06:09:31 +01:00
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 };
|
|
};
|