UNPKG

artemis-code-file-manager

Version:
8 lines (7 loc) 314 B
import { INode, Dictionary } from './types'; export declare class Utils { private static id; static createNode(parentId?: number, isLeaf?: boolean, data?: any): INode; static buildBreadcrumbs(flatPointers: Dictionary<INode>, node: INode): INode[]; static compareObjects(a: any, b: any): boolean; }