/// SPDX-License-Identifier: GPL-3.0-or-later /// SPDX-FileCopyrightText: Copyright © 2016-2021 Tony Garnock-Jones export const BootProc = '__SYNDICATE__bootProc'; // Keep these definitions in sync with api.ts from the core package // export type NonEmptySkeleton = { shape: Shape, members: Skeleton[] }; export type Skeleton = null | NonEmptySkeleton; export type Path = Array;