artemis-code-file-manager
Version:
Simple File Explorer for Angular
8 lines (7 loc) • 314 B
TypeScript
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;
}