- Add GETTING_STARTED.md with quick start guide and development modes - Add INSTALL.sh automated installation script - Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md - Add QUICK_REFERENCE.md for common commands - Add SETUP_GUIDE.md with detailed setup instructions - Update README.md with improved project overview - Add did-wallet app dependencies and node_modules
17 lines
526 B
TypeScript
17 lines
526 B
TypeScript
declare function flatten <T> (array: flatten.NestedArray<T>): T[];
|
|
|
|
declare namespace flatten {
|
|
export interface NestedArray <T> extends ReadonlyArray<T | NestedArray<T>> {}
|
|
|
|
export interface NestedList <T> {
|
|
[index: number]: T | NestedList<T>;
|
|
length: number;
|
|
}
|
|
|
|
export function from <T> (array: NestedList<T>): T[];
|
|
export function depth <T> (array: NestedArray<T>, depth: number): NestedArray<T>;
|
|
export function depthFrom <T> (array: NestedList<T>, depth: number): NestedArray<T>;
|
|
}
|
|
|
|
export = flatten;
|