syndicate-js/packages/core/src/runtime/api.ts

4 lines
180 B
TypeScript

export type NonEmptySkeleton<Shape> = { shape: Shape, members: Skeleton<Shape>[] };
export type Skeleton<Shape> = null | NonEmptySkeleton<Shape>;
export type Path = Array<number>;