/** * layerify an object or array of object * * @param obj object/array to be layerified * @param sep seperator that denotes there should be another layer */ declare const layerify: (o: object | object[] | null, sep?: string) => {} | null; export default layerify;