15 lines
389 B
TypeScript
15 lines
389 B
TypeScript
import type { FC } from "react";
|
|
import React from "react";
|
|
// plane imports
|
|
|
|
export type TWorkItemAdditionalSidebarProperties = {
|
|
workItemId: string;
|
|
workItemTypeId: string | null;
|
|
projectId: string;
|
|
workspaceSlug: string;
|
|
isEditable: boolean;
|
|
isPeekView?: boolean;
|
|
};
|
|
|
|
export const WorkItemAdditionalSidebarProperties: FC<TWorkItemAdditionalSidebarProperties> = () => <></>;
|