// Type definitions for flat // Project: https://github.com/hughsk/flat // Definitions by: Ilya Mochalov // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare var flatten: FlatTypes.Flatten; export = flatten; declare namespace FlatTypes { interface FlattenOptions { delimiter?: string; safe?: boolean; maxDepth?: number; } interface Flatten { ( target: TTarget, options?: FlattenOptions ): TResult; flatten: Flatten; unflatten: Unflatten; } interface UnflattenOptions { delimiter?: string; object?: boolean; overwrite?: boolean; } interface Unflatten { ( target: TTarget, options?: UnflattenOptions ): TResult; } }