/// SPDX-License-Identifier: GPL-3.0-or-later /// SPDX-FileCopyrightText: Copyright © 2016-2021 Tony Garnock-Jones // 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;