syndicate-js/packages/compiler/src/compiler/internals.ts

8 lines
301 B
TypeScript
Raw Normal View History

2021-01-18 22:11:53 +00:00
export const BootProc = '__SYNDICATE__bootProc';
// Keep these definitions in sync with api.ts from the core package
//
export type NonEmptySkeleton<Shape> = { shape: Shape, members: Skeleton<Shape>[] };
export type Skeleton<Shape> = null | NonEmptySkeleton<Shape>;
export type Path = Array<number>;