//#region packages/tree/splitGroup.d.ts /** * 字符串数组 排序 - 分割 分组 */ type ObjVal = { value: string; father?: string; exist?: string; children?: ObjVal[]; is?: boolean; }; declare function splitGroupExist(arr: string[], way?: string, isMergeOrder?: boolean): ObjVal[]; declare function splitGroupDitto(arr: string[], way?: string, isMergeOrder?: boolean): ObjVal[]; declare function splitGroup(arr: string[], way?: string, isMergeOrder?: boolean, type?: number | string | boolean): ObjVal[]; //#endregion export { splitGroupDitto as n, splitGroupExist as r, splitGroup as t };