mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
11 lines
322 B
TypeScript
11 lines
322 B
TypeScript
import { TIssueServiceType } from "@plane/types";
|
|
|
|
export const useWorkItemProperties = (
|
|
projectId: string | null | undefined,
|
|
workspaceSlug: string | null | undefined,
|
|
workItemId: string | null | undefined,
|
|
issueServiceType: TIssueServiceType
|
|
) => {
|
|
if (!projectId || !workspaceSlug || !workItemId) return;
|
|
};
|