UNPKG

@btfuse/core

Version:

A native-first framework for building hybdrid web-native applications

11 lines (10 loc) 221 B
/** * 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>; };