11 lines
327 B
TypeScript
11 lines
327 B
TypeScript
import type { 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;
|
|
};
|