export const isTree = (obj: any): obj is Tree => {
  return isObject(obj) && obj.ls !== undefined
}