/**
 * Utility type for constructing a recursive array
 */
export type RArray<T> = T[] | RArray<T>[];
/**
 * Utility type for constructing a recursive object
 */
export type RObj<T> = {
    [key: string]: T | RObj<T>;
};
