// Keep these definitions in sync with internals.ts from the compiler package // export type NonEmptySkeleton = { shape: Shape, members: Skeleton[] }; export type Skeleton = null | NonEmptySkeleton; export type Path = Array;