Files
plane/apps/web/ce/hooks/use-issue-properties.tsx

11 lines
322 B
TypeScript
Raw Permalink Normal View History

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;
};