5 lines
218 B
TypeScript
5 lines
218 B
TypeScript
import type { TIssue } from "@plane/types";
|
|
import { getIssueIds } from "@/store/issue/helpers/base-issues-utils";
|
|
|
|
export const workItemSortWithOrderByExtended = (array: TIssue[], key?: string) => getIssueIds(array);
|